function openwin(img, imgW, imgH, alt)
{
 mywin=window.open("","win","status=no,width=" + imgW + ",height=" + imgH +", resizeable=no")   //»óÅÂÁÙ ¾øÀ½, ³ÐÀÌ¿Í ³ôÀÌ´Â Parameter, »çÀÌÁîÁ¶Àý ±ÝÁö
 mywin.document.open()   //Doc ¿­±â
 mywin.document.write("<html><title>"+alt+"</title>")

 mywin.document.write("<body topmargin=0 leftmargin=0 onBlur='self.close()'>")
 mywin.document.write("<img src="+img+" width="+imgW+" height="+imgH+" alt="+alt+">")

 mywin.document.write("</body></html>")
 mywin.document.close()   //Doc ¿­±â

 mywin.focus() 
}

