// JavaScript Document
<!-- open1.htm ¹®¼­¸¦ ¶ç¿ì´Â ½ºÅ©¸³Æ® -->
<!--
//ÄíÅ°°ªÀ» °¡Á®¿À´Â ÇÔ¼ö
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("March 10, 2008"); //ÆË¾÷ À©µµ¿ì¸¦ ´Ý°íÀÚ ÇÏ´Â ³¯Â¥
var Today = new Date();

if (Today < CloseDate){
	//getCookie ÇÔ¼ö¸¦ È£ÃâÇÏ¿© ÄíÅ°°ªÀ» °¡Á®¿Â´Ù.
	var blnCookie = getCookie("op1");
	//ÄíÅ°°ªÀÌ true°¡ ¾Æ´Ò °æ¿ì¿¡¸¸ »õ Ã¢À» ¶ç¿î´Ù.
	if ( !blnCookie ) {
		win = window.open("/popup/2007_1011.html","op1","width=300, height=230, left=0, top=0"); 
		win.focus();
	}
}
//-->