// ÄíÅ° ¾ò±â --------------------
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 PopupWindow() {
	var width=400;
	var height=448;
	var posx=0;
	var posy=0;

	posx = (screen.width-width)/2-1;
	posy = (screen.height-height)/2-1;

	position = "width="+width+",height="+height+",scrollbars=no,top=0,left=0,status=yes";

	if ( getCookie( "20090101" ) != "nopop" )
	{
	   var popup01=window.open('/popup/popup_20090310.html','20090101',position);
	}
}

// ÆË¾÷Ã¢ ------------------------
function popupNotice() {
	var width=400;
	var height=500;
	var posx=0;
	var posy=0;

	posx = (screen.width-width)/2-1;
	posy = (screen.height-height)/2-1;

	position = "width="+width+",height="+height+",scrollbars=no,top=0,left=0,status=yes";

	if ( getCookie( "20090324" ) != "nopop" )
	{
	   var popup01=window.open('/popup/popup2.html','20090324',position);
	}
}

PopupWindow();
//popupNotice();
