//<!-- hide script from older browsers
		/* 
			Created by Corder Assoc. Inc., 01-09-03
			ProtoType - loadWindow(strDocument, intTop, intLeft, intHeight, intWidth)
			The only required argument is the file location, all others are just for aesthetics
			Any number 0 and above is valid
		*/
		function loadWindow(strDocument, intTop, intLeft, intHeight, intWidth)
			{
				var myOpenner;
				myOpenner = window.open(strDocument, "","alwaysRaised,dependent,resizable,height=" + intHeight + ",width=" + intWidth + ",screenx=" + intLeft + ",screeny=" + intTop + ",left=" + intLeft + ",top=" + intTop + ",scrollbars=yes,menubar=no");
				myOpenner.focus();
			}
		// --> begin show