<!-- // hide from old browsersfunction focusField(element, text) { //removes default text in search field  if (element.value == text) { element.value = "";  }}function blurField(element, text) { //removes default text in search field if left empty  if (element.value == "") { element.value = text;  }}function MM_reloadPage(init) {  //reloads the window if Nav4 resized  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);function sendemail(x,y) { //email munger script  void(top.location="\u006d\u0061\u0069\u006c\u0074\u006f\u003a"+x+"\u0040"+y);  return false;}function openWindow (url, img_target, img_width, img_height){  var imageWin;    if ( imageWin == null || imageWin.closed )  {    imageWin = window.open(url,img_target,"width="+img_width+",height="+img_height+",resizable=1,scrollbars=1,left=10,top=10,toolbar=0,menubar=0");  }     if ( !imageWin.closed )  {    imageWin.resizeTo ( img_width, img_height );  }    imageWin.focus();}function openQTwin (url, WIN_WIDTH, WIN_HEIGHT) {finalWidth = parseInt(WIN_WIDTH) + 40;finalHeight = parseInt(WIN_HEIGHT) + 40;qtwin = window.open(url,"QTwin","width="+finalWidth+",height="+finalHeight+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1");qtwin.focus();}function start(){ 	menuSet(); 	if (window.customStart) 	{ 		customStart(); 	}}function maxlength(formName, element, maxvalue){     var q = eval("document."+formName+"."+element+".value.length");     var r = q - maxvalue;     var msg = "Sorry, you have input "+q+" characters into the "+       "text area box you just completed. It can return no more than "+       maxvalue+" characters to be processed. Please abbreviate "+       "your text by at least "+r+" characters.";     if (q > maxvalue) 	 {		 alert(msg);		 eval("document."+formName+"."+element+".focus()");		 eval("document."+formName+"."+element+".select()");		 return false;	 }	 else	 {		 return true;	 }}function multiMaxLength(numFields, formName){	var allRight = true;	for(i = 0; i < numFields; i++)	{		var q = eval("document."+formName+".answer"+i+".value.length");     	var r = q - 5000;     	var msg = "Sorry, you have input "+q+" characters into the "+       "text area box you just completed. It can return no more than 5000 characters to be processed. Please abbreviate "+       "your text by at least "+r+" characters.";     	if (q > 5000) 	 	{			 alert(msg);			 eval("document."+formName+".answer"+i+".focus()");			 eval("document."+formName+".answer"+i+".select()");			 return false;		 }		 else		 {			 allRight = true;		 }	}	return allRight;}// -->