<!--
function popUpCenteredWindow(Link,w,h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open(Link,"HelpWindow","height=" + h + ",width=" + w + ",resizable,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=0,copyhistory=0,toolbar=0,location=0,directories=0,statusbar=0,menubar=0,menu=0");
	win2.focus();
}
function popUpCenteredWindow2(Link,w,h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open(Link,"HelpWindow2","height=" + h + ",width=" + w + ",resizable,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes,copyhistory=no,toolbar=no,location=no,directories=no,status=no,menubar=no,menu=no");
	win2.focus();
}
function popUpCenteredWindow3(Link,w,h) {
	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - (w/2) + 10; //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (h/2) + 5; //half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open(Link,"HelpWindow2","height=" + h + ",width=" + w + ",resizable,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes,copyhistory=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,menu=no");
	win2.focus();
}
//-->


