1.js 코드 복사 코드는 다음과 같습니다. <br><br>function openwindow(url,name,iWidth,iHeight) <br>{ <br>// 웹페이지로 리디렉션할 URL <br>// 웹페이지 이름 이름, 비워둘 수 있음 <br>//iWidth 팝업 창 너비 <br>// iHeight 팝업 창 높이 <br>//window.screen.height 화면 높이를 가져오고, window.screen.width는 화면 너비를 가져옵니다. <br>var iTop = (window.screen.height-30-iHeight)/2; //창의 세로 위치를 가져옵니다. >var iLeft = (window.screen.width-10-iWidth)/2; //창의 수평 위치를 가져옵니다. <br>window.open(url,name,'height=' iHeight ',,innerHeight=' iHeight ',width=' iWidth ',innerWidth=' iWidth ',top=' iTop ',left= ' iLeft ',toolbar=no,menubar=no,scrollbars=auto,resizeable=no,location=no,status=no '); <br>} <br><br> 2. 호출 방법코드 복사 코드는 다음과 같습니다. 로 이동