function popUpMain(urlName) {
	var iMyWidth;
	var iMyHeight;//gets top and left positions based on user's resolution so hint window is centered.
	
	if (window.screen.width <= 780)	{
	iMyWidth = (window.screen.width/2) - (150+ 10); //half the screen width minus half the new window width (plus 5 	pixel borders).
	iMyHeight = (window.screen.height/2) - (50+ 50); //half the screen height minus half the new window height (plus 	title and status bars).
	

var win2 = window.open(urlName,"uct","height=250,width=520,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes");
		win2.focus();

	}
	else
	{
		iMyWidth = (window.screen.width/2) - (150 + 10); //half the screen width minus half the new window width (plus 5 pixel borders).
		iMyHeight = (window.screen.height/2) - (50+ 50); //half the screen height minus half the new window height (plus title and status bars).
		var win2 = window.open(urlName,"uct","height=250,width=520,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes" );
		win2.focus();
	}
}
// -->

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//-->



<!--


<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
//-->






