//<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">

// SHINNAJI JavaScript Document

// Å¬¸¯±ÝÁö
//function click() {
//	if (event.button==2) {
//		alert('Å¬¸¯±ÝÁö');
//	}
//}
//document.onmousedown=click



// html ¾øÀÌ ÀÌ¹ÌÁö ¶Ù¿ì±â - ½ÃÀÛ
var win1Open = null
function displayImage(picName, windowName, windowWidth, windowHeight){
return window.open(picName,windowName,"titlebar=no,toolbar=no,scrollbars=no,resizable=no,width=" + (parseInt(windowWidth)+20) + ",height=" + (parseInt(windowHeight)+15)) 
}
function winClose(){
if(win1Open != null) win1Open.close() 
}
function doNothing(){}

function displayImage(picName, windowName, windowWidth, windowHeight){
var winHandle = window.open("" ,windowName,"titlebar=no,toolbar=no,scrollbars=no,resizable=no,width=" + windowWidth + ",height=" + windowHeight)
if(winHandle != null){
var htmlString = "<html><head><title>Picture</title></script></head>" 
htmlString += "<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>"
htmlString += "<a href=javascript:window.close()><img src=" + picName + " border=0 alt=´Ý±â></a>"
htmlString += "</body></html>"
winHandle.document.open()
winHandle.document.write(htmlString)
winHandle.document.close()
} 
if(winHandle != null) winHandle.focus()
return winHandle
}
// html ¾øÀÌ ÀÌ¹ÌÁö ¶Ù¿ì±â - ³¡


