화면 중간에 팝업 띄우기
function pop(code){var w = 600;var h = 750;var x = (screen.availWidth - w) / 2;var y = (screen.availHeight - h) / 2; var popUrl = "https://www.site.com?method="+code;//팝업창에 출력될 페이지 URLvar popOption = "width="+w+", height="+h+", left="+x+", top="+y+", resizable=no, scrollbars=auto, status=no;"; //팝업창 옵션(optoin)window.open(popUrl, "popupName", popOption);}