function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,status=yes,location=no,scrollbars=yes,resizable=yes,width=750,height=520,left=125,top=100");
}		
		


	function popup(mytitle, myurl, width, height, x, y) {
		var w;
		var netscape = (navigator.appName.substring(0, 8) == "Netscape");
		var microsoft = (navigator.appName.substring(0, 9) == "Microsoft");
		var other = (!netscape && !microsoft);
		var version = parseFloat(navigator.appVersion);
		if (netscape || (microsoft && version >= 4.0)) {
			// Netscape3+ & IE4 like this.
			w = window.open("", mytitle, "width=" + width + ",height=" + height + ",resizable=yes,status=no,toolbar=no,scrollbars=yes,left=" + x + ",top=" + y + ",screenX=" + x + ",screenY=" + y);
			w.location.href = myurl;	// keep x11 happy
			w.focus();
			return;
		} else {
			// IE3 groks this.	Hope everybody else does too
			w = window.open(myurl, mytitle, "width=" + width + ",height=" + height + ",resizable=yes,status=no,toolbar=no,scrollbars=yes,left=" + x + ",top=" + y + ",screenX=" + x + ",screenY=" + y);
			return;
		}
	}

	function wstat(s) { window.status = s; return true; }




