// JavaScript Document	var divName = "";		function adjustLayout(){		 var col1H = xHeight("column1");		 var col2H = xHeight("column2");		 var col3H = xHeight("column3");		 		 // find out max height for columns		 var iHeight = Math.max(col1H, Math.max(col2H,col3H));		 			xHeight("content",iHeight);			xHeight("column1",iHeight);			xHeight("column2",iHeight);		 	xHeight("column3",iHeight);			 // show elements below content			//xShow("bottombanner");			xShow("footer");			xShow("globalfooter");	}		window.onload = function(){
		xAddEventListener(window, "resize", adjustLayout, false);
		adjustLayout();	
		extraTime = setTimeout("timedAdjustment();", 1500);
	};
	
	function timedAdjustment(){
		adjustLayout();
		//alert("timedAdjustment called adjustLayout()");
		clearTimeout(extraTime);
	};		// file update 3/4/03	//function for popup windows --	function _newWindow(url,name,fwidth,fheight,status,directories,location,toolbar,menubar,scrollbars,resizable,vLeft,vTop,fCloseSelf) {		// setting the new window size dependng on whats passed		switch (fwidth){			case "max":				fwidth = screen.width;			break			case "half":				fwidth = screen.width/2;			break			default:				fwidth = Number(fwidth);				/*if(document.sPlatform.indexOf("Mac") == -1){					fwidth += 10;// add window width for pcs				}/**/		}		switch (fheight){			case "max":				fheight = screen.height-15;//adjust for browser chrome				/*if(document.sPlatformType.indexOf("Mac") == -1){					fheight -= 45;// take off extra for pcs				}/**/			break			case "half":				fheight = screen.height/2;			break			default:				fheight = Number(fheight);				/*if(document.sPlatformType.indexOf("Mac") == -1){					fheight += 15;// add extra for pcs				}/**/		}		// set the position 		if(vLeft == "center"){vLeft = (screen.width/2) - (fwidth/2);}		if(vTop == "center"){vTop = (screen.height/2)  - (fheight/2);}		//alert("Top="+vTop+" Left="+vLeft);		//		options = ((fwidth!="")?"width="+fwidth:"")+((fheight!="")?",height="+fheight:"")+",status="+((status=="1")?"yes":"no")+",directories="+((directories=="1")?"yes":"no")+",location="+((location=="1")?"yes":"no")+",toolbar="+((toolbar=="1")?"yes":"no")+",menubar="+((menubar=="1")?"yes":"no")+",scrollbars="+((scrollbars=="1")?"yes":"no")+",resizable="+((resizable=="1")?"yes":"no")+",left="+vLeft+",top="+vTop ;		var sWinObject = name.replace(" ","_");		eval(sWinObject+"=window.open('"+url+"','"+sWinObject+"','"+options+"')");		if (fCloseSelf == true){this.close();}		eval(sWinObject+".focus()");	};				//// SEARCH SUBMIT	function validateSearch(obj){		if(obj.query.value == "Enter keyword or phrase" || obj.query.value == " " || obj.query.value.length <= 0){ 			alert("Please enter search criteria.");			return false;				};		};		function changeSearchInput(obj,empty){		obj.value = (empty)? "" : (obj.value.length > 0)? obj.value : "Enter keyword or phrase";	};