// Use an extra set of style sheets for Windows, because
	// Windows browsers display absolute font sizes too large
	if (navigator.appVersion.indexOf("Win") != -1) {
		document.write('<link rel="stylesheet" type="text/css" href="res/includes/winstyles.css" />');
	}
	//-->
	
// Opens new windows
// Put this in html: <a href="javascript:onMouseDown=PopUpWindow('step1.htm','step1', 600, 800)">
	function PopUpWindow(theUrl, winName, width, height) {
	    window.open(theUrl, winName, "toolbar=no, directories=no, status=no, scrollbars=yes, resizable=yes, menubar=no, width=" + width + ", height=" + height);
	}
//-->
