// Browser detectvar ie4 = (document.all && !document.getElementById) ? true:false;var ns4 = (document.layers) ? true:false;var dom2 = (document.getElementById) ? true:false;var loc = new String(document.location);//Print Pagefunction printPage(){  if(window.print){window.print();}  else {alert("Printing Instructions:\n\n - If you are using a Macintosh, please select \"Print\" from the \"File\" menu.\n - If you are using Windows, right click the page and select \"Print\" from the pop-up menu.");}}// Universal image rollover functionsfunction imghighlight(whichimg) {	var imgsrc = new String(whichimg.src);	imgsrc = imgsrc.replace(new RegExp('_off\.','g'),'_on\.');	whichimg.src = imgsrc;}function imgnohighlight(whichimg) {	var imgsrc = new String(whichimg.src);	imgsrc = imgsrc.replace(new RegExp('_on\.','g'),'_off\.');	whichimg.src = imgsrc;}// Pop up functionsfunction popwin(loc,winname,w,h,scroll,resize) {	eval('var newwin = window.open("' + loc + '","' + winname + '","width=' + w + ',height=' + h + ',top=0,left=0,location=no,scrollbars=' + scroll + ',menubar=no,toolbar=no,resizable=' + resize + '")');}// Copyright Yearfunction y2k(year) {	if (year < 2000) {				year += 1900;	}	return year;}var datestring = ''; function writedate() {	var today = new Date(); 	var year = y2k(today.getYear()); 	datestring = year;}writedate();//DREAMWEAVER CODEfunction MM_findObj(n, d) { //v4.01  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);  if(!x && d.getElementById) x=d.getElementById(n); return x;}function MM_jumpMenu(targ,selObj,restore){ //v3.0  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");  if (restore) selObj.selectedIndex=0;}//DREAMWEAVER CODE