##################################################################################
//   오픈윈도우를 띄울때
//   호출 방법    :  setOpenwin(주소,창이름,창넓이,창높이,스크롤여부)
//  입력 파라메터: winl-윈도우 가로중앙점, wint- 윈도우 세로 중앙점
// ##################################################################################
function setOpenwin(url,winnm,width,height,scroll)
{
 var winl = (screen.width-width)/2;
 var wint = (screen.height-height)/2;
 var settings  ='height='+height+',';

 settings +='width='+width+',';
 settings +='top='+wint+',';
 settings +='left='+winl+',';
 settings +='scrollbars='+scroll+',';
 settings +='toolbar=no,location=no,directories=no,status=no,resizable=no,menubar=no,copyhistory=no';
   win = window.open(url,winnm,settings);
 if (!win)
  alert('차단된 팝업창을 허용해 주세요.');
 else{
  win.window.resizeTo(width,height);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
 }
}

top