//±âÇÑ ÁöÁ¤ ÆË¾÷

date1="2010/06/02" // ÆË¾÷ ½ÃÀÛÇÒ³¯Â¥(ÀÚ¸´¼öÁöÅ°¼¼¿ä)
date2="2010/07/18" // ÆË¾÷ ¾È³ª¿À°Ô(½ÃÀÛ)ÇÒ ³¯Â¥
var date3 = new Date(); // ÇöÀç³¯Â¥ °´Ã¼
var now = new Date(); // ÇöÀç³¯Â¥ ±¸ÇÏ°í...
var begin = new Date();
var end   = new Date();
begin = new Date(date1);
end   = new Date(date2);

// Á¶°Ç¿¡ ¸ÂÀ¸¸é ÆË¾÷À» ¶ç¿ò...

function popupNew() {
	     if(now >= begin && now <= end)  openwin = window.open("popup/cjduck.php","cjduck","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=406,left=340,top=20");
		 
}

function getCookie(name) {
        var nameOfCookie = name + "=";
        var x = 0

        while ( x <= document.cookie.length ) {
                var y = (x+nameOfCookie.length);
                if ( document.cookie.substring( x, y ) == nameOfCookie ) {
                        if ( (endOfCookie=document.cookie.indexOf( ";",y )) == -1 )
                                endOfCookie = document.cookie.length;
                        return unescape( document.cookie.substring(y, endOfCookie ) );
                }
                x = document.cookie.indexOf( " ", x ) + 1;
                if ( x == 0 )
                        break;
        }
        return "";
}


if (getCookie("cjduck") != "cjduck_100") {
	popupNew();
}
