

//<script type="text/javascript">

	function submitForm(qurt)
	{
		document.dptsearch.Quarter.value = qurt;
		document.dptsearch.QuarterQtr.value = qurt.substring(4,5);
		document.dptsearch.submit();
	}
//</script>

//<script type="text/javascript">
 
	var LabelText = " Search";


	function ClearIfAppropriate() {
		var searchqobj = document.getElementById("q");

         if(searchqobj.value == LabelText) {
			searchqobj.value = "";
		}

	}

	function initPage() {
		// Location for script commands to run after the page has 
		// finished loading
		Nifty("ul#da_tabnav a","medium transparent top");	//this creates the round corners onto the tabs, function can be reused to put round corners into anything
setPage();                                  //this highlights the menu item (leftnav) corresponding the actual page
setActiveTab();	                            //this highlights the Tab corresponding to the actual path

	}

// window.document.onload = setTimeout('initPage()',20) ;
// Events Calendar uses "body onload" in many of its scripts, so to 
// avoid conflicts, we will use a straightforward setTimeout() call
// instead of window.document.onload .

setTimeout('initPage()',20) ;


//</script>