......
<SCRIPT LANGUAGE="JavaScript">
<!--
delay = 1; // 몇초 후에 열리게 할것인가?
closetime = 5; // 열리고 나서 몇초 후에 닫힐것인가?
url = "https://5ok.co.kr/born/tag.php"; // 팝업창의 주소
width = 400; // 윈도우의 가로크기
height = 350; // 윈도우의 높이

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() {
timer = setTimeout("Start(url, width, height)", delay*1000);
}
// -->
</script>

<BODY OnLoad="doPopup();">