	window.onload = WinLoad
	
	function WinLoad(){
		//Notice_Wnd();	
	}	

	function Notice_Wnd()
	{
		if(getCookie("PlayPopup") != "done")
		{
			window.open("http://www.playdb.co.kr/html/event/OpenEventPop.html", "PlayNotice", "width=450,height=595,top=80,notoolbars,resizable=yes,left=120");
		}
		
		return;
	}

   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 "";
	}


	function Copy_RSSURL(RSSurl, title) {
		window.clipboardData.setData("Text", RSSurl);
		alert(title + ' ÁÖ¼Ò°¡ º¹»çµÇ¾ú½À´Ï´Ù.\n»ç¿ëÇÏ½Ã´Â RSS ¸®´õ±â¿¡ µî·ÏÇØÁÖ¼¼¿ä.');
	}
