

<!-- 
/*---------------------------------------
   Event window script 
----------------------------------------*/

// ÄíÅ°°¡ ÀÖ³ª Ã£½À´Ï´Ù 
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 ""; 
} 

// ÆË¾÷Ã¢¿¡¼­ ¸¸µé¾îÁø ÄíÅ° Event ÀÇ °ªÀÌ done ÀÌ ¾Æ´Ï¸é(Áï, Ã¼Å©ÇÏÁö ¾ÊÀ¸¸é,) 
// ÀÌº¥Æ®Ã¢ (Siteopen_Event.php) À» ¶ç¿ó´Ï´Ù 

//if ( getCookie( "focus" ) != "done" ) { 

//		var Address = "./css/new.htm";
//		Newwin1 = window.open(Address,"Event1","toolbar=no,resizable=no,status=no,top=20,left=20,width=400,height=324,scrollbars=no");
//		Newwin1.opener = self;    
//}  

if ( getCookie( "focus" ) != "done" ) { 

		var Address = "./css/new1.htm";
		Newwin1 = window.open(Address,"Event2","toolbar=no,resizable=no,status=no,top=20,left=80,width=600,height=460,scrollbars=no");
		Newwin1.opener = self;    
}  

// -->