<!-- // POP UP WINDOW SCRIPTS (JR)
	function popWin(tREF,tURL,tWID,tHEI,tSCR,tRES) {
		var url = tURL;
		var	opString = "width="+tWID+",height="+tHEI+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+tSCR+",resizable="+tRES+",copyhistory=no";

	    theWin = window.open(url, tREF, opString);
		theWin.focus();
	}
 -->