자바스크립트 코드
function openwindow(url,name,iWidth,iHeight)
{
var url; 비어 있을 수 있음;
var iWidth; 창의 수직 위치;
var iLeft = (window.screen.availWidth-10-iWidth)/2; //창의 수평 위치를 가져옵니다.
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 ');
}
사용시 이 함수를 호출하면 됩니다. 예:
단점: 원래 창의 크기와 위치와는 아무런 관련이 없습니다.