<!--
//----------------------------------------------------------------------
// SUB WINDOW OPENER SCRIPTS
//----------------------------------------------------------------------
// Last update: 8/1/03
// Author: 		 James Khazar
var gWindowAgentString=navigator.userAgent.toLowerCase();
var myWindow=null;
function openSubWindow(theURL,winName,theWidth,theHeight) {
		if (gWindowAgentString.indexOf("explorer")!=-1 && gWindowAgentString.indexOf("mac") !=-1) {
			theWidth=theWidth-13;
			theHeight=theHeight-13;
		}
		myFeatureString = "WIDTH=" + theWidth + ", HEIGHT=" + theHeight + ", SCROLLBARS";
		if (myWindow != null) {
			myWindow.close();
		}
		myWindow=window.open(theURL,winName,myFeatureString);
		myWindow.focus();
	}
//-->

