// ¿À´ÃÇÏ·ç ±×¸¸ º¸±â
<!--
//ÄíÅ°°ªÀ» °¡Á®¿À´Â ÇÔ¼ö
function getCookie(name) {
var from_idx = document.cookie.indexOf(name+'=');
if (from_idx != -1) { 
from_idx += name.length + 1
to_idx = document.cookie.indexOf(';', from_idx) 
if (to_idx == -1) {
to_idx = document.cookie.length
}
return unescape(document.cookie.substring(from_idx, to_idx))
}
}

var CloseDate = new Date("January 10, 2008"); //ÆË¾÷ À©µµ¿ì¸¦ ´Ý°íÀÚ ÇÏ´Â ³¯Â¥¸¦ ÀÔ·ÂÇÏ¼¼¿ä.
var Today = new Date(); //¿À´Ã ³¯Â¥

if (Today < CloseDate)
{
//getCookie ÇÔ¼ö¸¦ È£ÃâÇÏ¿© ÄíÅ°°ªÀ» °¡Á®¿Â´Ù. 
var blnCookie = getCookie("op1");
//ÄíÅ°°ªÀÌ true°¡ ¾Æ´Ò °æ¿ì¿¡¸¸ »õ Ã¢À» ¶ç¿î´Ù.
if ( !blnCookie ) {
win = window.open("../popup/popup.php","op1","width=400,height=400"); //ÆÄÀÏ°æ·Î
win.focus();
}
}
//-->

