function onSelectChange(whichEl,caller){
	
	
		var j = 0;
		var szURL="";
		j = document.form1.department.selectedIndex;
		departmentid = document.form1.department.options[j].value;

		
		
	if (departmentid!=0){
		   
		if (caller=='upcoming'){
					szURL = "depUpcomingEvents.do?department=" + departmentid ;
				}else if (caller=='home'){
					szURL = "deptHome.do?department=" + departmentid ;
				}
			
	}else{
	       
			 if (caller=='upcoming'){
					szURL = "upcomingEvents.do" ;
				}else if (caller=='home'){
					szURL = "home.do" ;
				}
	}
		if (szURL != "") 
	
			document.location.href = szURL
}
	
function autoSubmit(caller){
		var j = 0;
		var szURL="";
			j = document.form1.department.selectedIndex;
			departmentid = document.form1.department.options[j].value;
			qcmeVal = document.form1.qcme.checked;
			if (departmentid!=0){
		       
					if (caller=='upcoming'){
						szURL = "upcomingEvents.do" ;
					}else if (caller=='home'){
						szURL = "home.do" ;
					}
					
				
			}else{

				if (caller=='upcoming'){
						szURL = "upcomingEvents.do" ;
					}else if (caller=='home'){
						szURL = "home.do" ;
					}
				
			}
		if (szURL != "") 
			document.location.href = szURL

	}
