<!--
var userAgent = navigator.userAgent;
var MSIEIndex = userAgent.indexOf("MSIE");
if (userAgent.indexOf("Win")  == -1 ||
userAgent.indexOf("MSIE") == -1 ||
userAgent.substring((MSIEIndex + 5),(MSIEIndex + 6)) < 5)
window.location.replace("default.htm");


function NewWindow(mypage, myname, w, h, scroll) {
//var winl = (screen.width - w) / 2;
//var wint = (screen.height - h) / 2;
//winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes'+scroll+',resizable=no'
winprops = 'height='+h+',width='+w+',scrollbars=yes'+scroll+',resizable=no'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}



function go_url(url)
{
var child = null;
child = window.open(url,'Notice','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,width=300,height=400,left=500,top=200');
child.focus();
}

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( "Notice" ) != "done" )
{
	noticeWindow  =  window.open('../notice.html','Notice','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=300,height=400,left=500,top=200');
	noticeWindow.opener = self;
}
// -->
