JavaScript 팝업 코드
팝업 옵션주에 스크롤만 가용 유무를 받게..값: yes, no
정의 부
function popup_ykbnc(address,popupname,top,left,height,width,scroll) { var opt = "width=" + width + ",height="+ height +",top="+ top +",left="+ left +",location:no,toolbar=no,scrollbars="+ scroll +",menubar=no,status=no,resizable=no"; popupname = window.open(address,popupname,opt); popupname.focus(); }
호출 부
popup_ykbnc('http://www.naver.com','naver',10,10,400,600,'no');