addLoadEvent(HideGo);
function HideGo() {
	var hiders = 3;
	for (i=1;i<=hiders;i++){
		var thebutton = "hide" + i;
		//alert(thebutton);
		if (document.getElementById(thebutton)) {
			document.getElementById(thebutton).className = "hide";
		}
	}
}

function CrseScript(value) {
	var theform = document.CrseSelect;
	theform.action="coursesearch.asp?P_Crse="+value;
	theform.submit();
}

function LocScript(form) {
	var theform = document.LocSelect;
	theform.action="coursesearch.asp?P_Crse="+theform.P_Crse.value+"&P_Dept="+theform.P_dept.value+"&P_Loc="+theform.P_Loc.value;
	theform.submit();
}

function DptScript(form) {
	var theform = document.DptSelect;
	theform.action="coursesearch.asp?P_Crse="+theform.P_Crse.value+"&P_Dept="+theform.P_dept.value+"&P_Loc="+theform.P_Loc.value;
	theform.submit();

}