	// drop down selection boxes jump menu's
	// if theURL is false it kills the function
	// if winpop is false, it opens the valid url in the main window
	function goMenu(selObj,restore,winpop){
		var theURL = selObj.options[selObj.selectedIndex].value;
		if (theURL == "false") {	return; }
		else {
			if (winpop) {
				var winName = "new";
				var features = "'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600'";
				window.open(theURL,winName,features);
			}
			else { window.location = theURL; }
			if (restore) selObj.selectedIndex=0;
		}
	}

	// declares global variable to be used in webtrends live tracking code
	// do not change!
	var groupname = "false";
	
	// Verifies search entry before submitting search
	function chkSearchFrm(frmQ) {
		if (document.getElementById(frmQ).value == "search this site" || document.getElementById(frmQ).value == "")
			{ alert("Please enter your search query!"); return false; }
		else { return true; }
	}