
//ÄíÅ°°ªÀ» °¡Á®¿À´Â ÇÔ¼ö 
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("December 31, 2010"); //ÆË¾÷ À©µµ¿ì¸¦ ´Ý°íÀÚ ÇÏ´Â ³¯Â¥ 
var Today = new Date(); 




if (Today < CloseDate) 
{ 
//getCookie ÇÔ¼ö¸¦ È£ÃâÇÏ¿© ÄíÅ°°ªÀ» °¡Á®¿Â´Ù. 
var blnCookie = getCookie("op0120"); 
//ÄíÅ°°ªÀÌ true°¡ ¾Æ´Ò °æ¿ì¿¡¸¸ »õ Ã¢À» ¶ç¿î´Ù. 
if ( !blnCookie ) { 
win = window.open("popup_0120.asp","op0120","width=300,height=522,left=0,top=0");
win.focus(); 
} 
}

