
// JavaScript functions used by index.html

	function newWindow(url_href,name,width,height) {
		var xPos = 180, yPos = 50;
		var winCoords;
		if (navigator.appName == "Netscape") {
			winCoords = "screenX=" + xPos + ", screenY=" + yPos;
		} else if (navigator.appVersion.indexOf("MSIE") != -1) {
			winCoords = "left=" + xPos + ", top=" + yPos;
		}
		newwin = window.open( url_href, name, "copyhistory=no,directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,height=" + height + ",width=" + width + "," + winCoords );
		newwin.focus();
	}

	function newWindowScroll(url_href,name,width,height) {
		var xPos = 180, yPos = 50;
		var winCoords;
		if (navigator.appName == "Netscape") {
			winCoords = "screenX=" + xPos + ", screenY=" + yPos;
		} else if (navigator.appVersion.indexOf("MSIE") != -1) {
			winCoords = "left=" + xPos + ", top=" + yPos;
		}
		newwin = window.open( url_href, name, "copyhistory=no,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,height=" + height + ",width=" + width + "," + winCoords );
		newwin.focus();
	}
