영원한사랑

http://oxtag.com/html/ex/popupTimer.htm


<SCRIPT LANGUAGE="JavaScript">
<!--
closetime = 5; // 팝업창이 열린 후 5초 후 닫기
function Start(URL, WIDTH, HEIGHT) {
 windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
 preview = window.open(URL, "preview", windowprops);
 if (closetime) setTimeout("preview.close();", closetime*1000);
}

function doPopup() {
 url = "http://daum.net";  // 팝업창의 주소
 width = 400;  // 윈도우의 가로크기
 height = 350; // 윈도우의 높이
 delay = 2;    // 몇초 후에 열리게 할것인가를 설정 합니다
 timer = setTimeout("Start(url, width, height)", delay*1000);
}

document.onLoad = doPopup();
// -->
</script>