// ÄíÅ° ÀÐ±â
function fnGetCookieCom( i_name ) {
    if ( (i_name == null) || (i_name.length == 0) ) return null;

    var cookies = document.cookie.split("; ");

    for ( i=0; i < cookies.length; i++ ) {
          var nameval = cookies[i].split("=");

          if ( i_name == nameval[0]) {
               return unescape(nameval[1]);
          }
    }

    return null;
}


if(fnGetCookieCom("pop_20090922") != "done")
{		
	// ÆË¾÷Á¾·áÀÏ
	var yy = "2009";
	var mm = "09";
	var dd = "25";

	var strNowDt = new Date(); 
	var strEndDt = new Date(yy,mm-1,dd);

	if (strNowDt<=strEndDt)
	{		
		window.open('/common/inc/banner/popup/pop_20090922.htm','mainPop','width=480, height=522,top=0,left=0, status=no, scrollbars=no, resizable=no');
	}
}

