

<!-- 
function notice_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 ""; 
} 

//ÀÌ¹ÌÁöÅ©±â + ÇÏ´Ü close ¿ë Height 30px Ãß°¡.

/*¹Ý±â¹®. 2009.07.~200908014
if ( notice_getCookie( "Notice" ) != "done" ) 
{ 	
	window.open('/html/popup_200907.asp','notice1','top=0,left=0,width=350,height=430'); // ÆË¾÷À©µµ¿ìÀÇ °æ·Î¿Í Å©±â¸¦ ¼³Á¤ ÇÏ¼¼¿ä 
} 
*/

/*À¯·ÉÀÇÁý. 2009.07.~2009.08.10
if ( notice_getCookie( "Notice2" ) != "done" ) 
{ 	
	window.open('/html/popup_200907_2.asp','notice2','top=0,left=360,width=350,height=470'); // ÆË¾÷À©µµ¿ìÀÇ °æ·Î¿Í Å©±â¸¦ ¼³Á¤ ÇÏ¼¼¿ä 
} 
*/

/*Á¦9È¸¿Ü°í/ÀÚ»ç°í. 2009.08.10~20090831
if ( notice_getCookie( "popup_200908_matgong" ) != "done" ) 
{ 
	window.open('/html/popup_200908_matgong.asp','popup_200908_matgong','top=0,left=0,width=400,height=530'); // ÆË¾÷À©µµ¿ìÀÇ °æ·Î¿Í Å©±â¸¦ ¼³Á¤ ÇÏ¼¼¿ä 
} 
*/

/*SAT 2010
if ( notice_getCookie( "popup_SAT2010" ) != "done" ) 
{ 
	window.open('/html/popup_SAT2010.asp','popup_SAT2010','top=0,left=0,width=560,height=599'); // ÆË¾÷À©µµ¿ìÀÇ °æ·Î¿Í Å©±â¸¦ ¼³Á¤ ÇÏ¼¼¿ä 
}
*/

/*10-02-26 ÀÌ¿µ±Ç ¹Ú»ç Ä·ÇÁ
if ( notice_getCookie( "popup_100520_leeyg" ) != "done" ) 
{ 
	window.open('/html/popup_100520_leeyg.asp','popup_100520_leeyg','top=0,left=418,width=560,height=428'); // ÆË¾÷À©µµ¿ìÀÇ °æ·Î¿Í Å©±â¸¦ ¼³Á¤ ÇÏ¼¼¿ä 
}
*/

/*µå¸²KJCÆä½ºÆ¼¹ß*/
if ( notice_getCookie( "popup_100201_dreamKJCFestival" ) != "done" ) 
{ 
	window.open('/html/popup_100201_dreamKJCFestival.asp','popup_100201_dreamKJCFestival','top=10,left=10,width=400,height=620'); // ÆË¾÷À©µµ¿ìÀÇ °æ·Î¿Í Å©±â¸¦ ¼³Á¤ ÇÏ¼¼¿ä 
}

//ÀÌ¹ÌÁöÅ©±â + ÇÏ´Ü close ¿ë Height 30px Ãß°¡.
//--> 
