// SwRHC Site Utilities// Matt Round's method to normalize text size across browsersfunction sf() {	document.f.q.focus();} function emsTweak(){	if ((document.createElement) && (document.createTextNode))	{		document.writeln('<div id="emsTest" style="position:absolute; visibility:hidden; font-family:arial,helvetica,sans-serif">&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br /></div>');		var scaling=100;		if ((navigator.platform=="Win32") && (navigator.appName=="Microsoft Internet Explorer")) scaling=105;		var h=999;		if (document.getElementById('emsTest').clientHeight) h=parseInt(document.getElementById('emsTest').clientHeight);		else if (document.getElementById('emsTest').offsetHeight) h=parseInt(document.getElementById('emsTest').offsetHeight);		if (h<85) document.body.style.fontSize=Math.round(scaling*90/h)+"%";	}}// Reload page when resized in NNfunction reloadPage(init) {  if (init==true) with (navigator) {		if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    	document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; 		}	}  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();}reloadPage(true);