<!--





// this code controls the webmail login page pop up function







function openWindow(location) {

	if (screen.availHeight < 575 || screen.availWidth < 750) {

		window.alert("Sorry, you need a minimum of 800 x 600 resolution to view this page. Please, reset you monitor to a resolution of at least 800 x 600.");

	}

	

		else {

			var width = 750;

			var height = 575;

			var xPos = 

				((screen.availWidth - width)/2);

			var yPos = ((screen.availHeight - height)/2);

			var winAttr = 

				"width=" + width + ",height=" + height + 

				",left=" + xPos + ",top="  + yPos + 

				",resizable=yes" + ",scrollbars=yes";

		
			windowPopUp = window.open(location,"PopUp",winAttr);

		}



	

		

		// move focus on the target

		windowPopUp.focus();

	}











//-->

