// SearchPage JavaScript

function submitAdvSearch(xform){

	if(xform){
		var terms = xform.q.value;
		
		var xmode = xform.m;
		
		var search_url = "/about/search.php?q="+terms;
		
		if(xmode){
			var xmode_value = 'emory';
			
			for (counter = 0; counter < xmode.length; counter++){
			// If a radio button has been selected it will return true
			// (If not it will return false)
			if (xmode[counter].checked)
				xmode_value = xmode[counter].value;
			}
		
			if(xmode_value=='web'){
				search_url = search_url + '&m=web';
			}
		}
		
		window.location = search_url; 
	}

}