	function winOpen (file, windowName) {
		newWind = window.open (file, windowName, "HEIGHT=370,WIDTH=548,LEFT=0,TOP=0,scrollbars=yes");
		if (newWind.opener == null) {
			newWind.opener = window;
		}
	}

