<!--
function popUp(windowContents, width, height) 
{ 
	var browser = navigator.appName;
	if (browser == "Microsoft Internet Explorer")
	{
		window.open(windowContents, "popUpWindow", "menubar=0,status=0,location=0,width=" + width + ",height=" + height + ",left='0',top='100',toolbar='no',scrollbars=1,resizable=1");		
	}
	else
	{
		window.open(windowContents, "popUpWindow", "menubar=0,status=0,location=0,width=" + width + ",height=" + height + ",screenx='0',screeny='100',toolbar='no',scrollbars=1,resizable=1");
	}
}

function pageChange(URL,newWindow)
{
	if (newWindow == 0)
	{
		this.location.href=URL;
	}
	else
	{
		window.open(URL);
	}
}


//-->