<!--
function cnjOpen(url, n, w, h, s) {  //팝업창 정 가운데로 오는 소스
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+s+',resizable'   // javascript:cnjOpen('in/email.html','cnjopen',400,350,0)  여기서 0일경우 스크롤 no
win = window.open(url, n, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//-->
