// Pop-up Window Script

<!-- Hide from non-JavaScript browsers

function OpenWindow(URL,windowName,options, screenWidth, screenHeight, screenCenter) 
{
	if(window.screen)if(screenCenter)if(screenCenter=="true")
	{
	    var screenLeft = (screen.width-screenWidth)/2;
	    var screenTop = (screen.height-screenHeight)/2;
	    options+=(options!='')?',':'';
	    options+=',left='+screenLeft+',top='+screenTop;
	}
	window.open(URL,windowName,options+((options!='')?',':'')+'width='+screenWidth+',height='+screenHeight);
}

// Stop Hiding -->