function fImgWin(fUrl, fX, fY,ft){
        view = window.open("","ImageViewWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+fX+",height="+fY)
        view.document.open()
        view.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>")
        view.document.write("<title>- "+ft+" -</title></head><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>")
        view.document.write("<a href='javaScript:window.close();'><img src='"+fUrl+"'  width="+fX+" height="+fY+" border=0></a></body></html>")
        view.document.close()
}

