	//This is a function that eliminates the need for a "go" button on dropdown menus.	
	function doSel(obj)
	 {
	     for (i = 1; i < obj.length; i++)
	        if (obj[i].selected == true)
	           eval(obj[i].value);
	}
	//This function resets the dropdown boxes to the selected index
	function dropdownReset(){
		document.searchMUN.quick_links.selectedIndex = 0;
		document.searchMUN.quick_links.options[0].selected = true;


		if(!(document.selectServices===undefined)){
			document.selectServices.selectServices_drop.selectedIndex = 0;
			document.selectServices.selectServices_drop.options[0].selected = true;
		}
	}
	
	//This is a function is necessary for the off-campus login (and any other similar situations that are needed), IE does not evaluate onClick events from an option element.  This is the workaround.	
	function doQuick_links(optionValue, option){
		//alert(optionValue);
		switch( optionValue )
		{
		case "location.href='#'" :
		
			popup()
		
		break;
		default:
			doSel(option)
		
		}
		
	}	
