	
	// ÄíÅ°°ª Á¶È¸
	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 "";
	}

	// ÇöÀç ³¯Â¥ °®°í¿À±â (20090306000000)
	function timeNow01() {
	now = new Date();

	_yyyy=now.getYear()+"";
	_mm = now.getMonth()+1+"";
	_mm = ((_mm < 10) ? "0" : "") + _mm+"";
	_dd = now.getDate()+"";
	_dd = ((_dd < 10) ? "0" : "") + _dd+"";
	_hours = now.getHours()+"";
	_minutes = now.getMinutes()+"";
	_seconds = now.getSeconds()+"";

	_hours = ((_hours < 10) ? "0" : "") + _hours+"";
	_minutes = ((_minutes < 10) ? "0" : "") + _minutes+"";
	_seconds = ((_seconds < 10) ? "0" : "") + _seconds+"";
	_time = _yyyy + _mm + _dd + _hours + _minutes + _seconds+"";

	//alert("time:" + _time);
	return _time
	}

	//Æ¯Á¤½Ã°£¿¡ ÆË¾÷ ¶ç¿ì±â
	var datenow = timeNow01();
	//alert(datenow);
	var ts = "20090307000000"; //ÆË¾÷ ½ÃÀÛ
	var te = "20090308100000"; //ÆË¾÷ ¿Ï·á


	if (ts <= datenow && datenow < te)
	{

		// ½Ã½ºÅÛ Á¡°Ë ÆË¾÷ ¶ç¿ì±â
		if ( GetCookie( "info" ) != "done" ){
			var win6 = window.open('http://www.donga.co.kr/popup/pop_sysinfo_eng.jsp', 'info','width=500,height=240,left=300, scrollbars=no');
			win6.focus();
		}
 	}


		


	


	
	