
function loadlogon(){
	document.all.logo.style.display = "none"
	document.all.logon.style.display = "block"
}

function startclock() {
	setTimeout('loadlogon()',5000);
//	window.resizeTo(600,550);
//	window.moveTo((screen.width-600)/2,(screen.height-550)/2);	
}

var gMainWnd;

function ReFocus()
{
	try
	{
		gMainWnd.focus();
	}
	catch(e)
	{}
}

function LoadIt()
{
	x= screen.availHeight -30;
	y= screen.availWidth -12;

	window.moveTo(screen.width,screen.height);
		
	gMainWnd = window.open("../frames/Default.asp",null,"top=0,left=0,resizable=yes,height=" + x + ",width=" + y + ",status=no,toolbar=no,menubar=no,location=no");
	
	ReFocus();
	
	window.onfocus = ReFocus;
	//window.open("default.htm",null,"resizable=yes,height=600,width=800,status=no,toolbar=no,menubar=yes,location=no")	
}

function browserTest()
{
	if (!is.ie6up)
		window.top.location = '../logon/BrowserFail.aspx';
		
}
