<!--
/*
 FileName		: WindowScripts_inc.js
 Author			: W. Dean
 Created		: 21-05-2001
 Last Updated	: 21-05-2001

 Purpose
 -------
 contains Browser Window functions

 Uses
 ----
 
 Functions
 ---------
	function openWindow(theURL,winName,features)
	--------------------------------------------------
		Open new browser window

 History
 -------

*/
	function openWindow(theURL,winName,features) {
		var newwindow = window.open(theURL,winName,features);
		newwindow.focus();
	}
//-->