
function setCookie( name, value, expiredays )
{
        var todayDate = new Date();
        todayDate.setDate( todayDate.getDate() + expiredays );
        document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
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( "070831" ) != "done" )
//{
//	noticeWindow  =  window.open('http://www.daesungbook.com/pop_up_2007/pop_up_8_3.htm','event','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=371,height=536,top=0,left=700');
//	noticeWindow.opener = self;
//}
//if ( getCookie( "070504" ) != "done" )
//{
//	noticeWindow  =  window.open('http://www.daesungbook.com/pop_up_2007/pop_up_10_4.htm','event_2','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=371,height=536,top=0,left=100');
//	noticeWindow.opener = self;
//}


