<!--
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='100',top='100',toolbar='no',scrollbars=1,resizable=1");		
	}
	else
	{
		window.open(windowContents, "popUpWindow", "menubar=0,status=0,location=0,width=" + width + ",height=" + height + ",screenx='100',screeny='100',toolbar='no',scrollbars=1,resizable=1");
	}
}

function popUpFullSize(windowContents) 
{ 
	var browser = navigator.appName;
	if (browser == "Microsoft Internet Explorer")
	{
		window.open(windowContents, "popUpWindow", "menubar=0,status=0,location=0,width="+eval(screen.availWidth - 10)+",height="+eval(screen.availHeight - 60)+",left='0',top='30',toolbar='no',scrollbars=1,resizable=1");		
	}
	else
	{
		window.open(windowContents, "popUpWindow", "menubar=0,status=0,location=0,width="+eval(screen.availWidth - 10)+",height="+eval(screen.availHeight - 60)+",screenx='0',screeny='30',toolbar='no',scrollbars=1,resizable=1");
	}
}

function pageChange(URL,newWindow)
{
	if (newWindow == 0)
	{
		this.location.href=URL;
	}
	else
	{
		window.open(URL);
	}
}


//-->
