
<!-- Printer Friendly PopUp Window Script -->

function popUp(URL) {
			var iMyWidth;
			var iMyHeight;
			//gets top and left positions based on user's resolution so hint window is centered.
			iMyWidth = (25); // Pixels from left of the monitor.
			iMyHeight = (25); // Pixels down from the top of monitor.
			var win2 = window.open(URL, 'VSC', "height=500,width=575,resizable=yes,toolbar=no,menubar=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=Yes");
			win2.focus();
		}

<!-- End Preload Script -->
