// ÀÌº¥Æ®
	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( "pop040802" ) != "no" ){
		noticeWindow  =  window.open('popup/040802_pop.html','040802_pop','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=417,height=650,left=0,top=0');
		noticeWindow.opener = self;
	}
*/

// °¡¸ÍÁ¡¸ðÁý ÆË¾÷
//	if ( getCookie( "pop040811" ) != "no" ){
//		noticeWindow  =  window.open('/popup/040811_pop.html','040811_pop','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=386,height=650,left=0,top=0');
//		noticeWindow.opener = self;
//	}

// °³ÆíÀÌº¥Æ®
//	if ( getCookie( "040916_popup" ) != "no" ){
//		noticeWindow  =  window.open('/popup/040916_pop.html','040916_popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=340,height=480,left=392,top=0');
//		noticeWindow.opener = self;
//	}

// ½Å³âÀÎ»ç ÆË¾÷
//	if ( getCookie( "041231_popup" ) != "no" ){
//		noticeWindow  =  window.open('/popup/041231_pop.html','041231_popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=360,left=392,top=0');
//		noticeWindow.opener = self;
//	}

