function load() {
      
}
function searchPrograms() {
	var category = $F('category');
	//alert(category);
    if(category==0){
		alert('Please select an Area of Study');
        return false;
    }
	var address = $F('zip');
	if (address.length != 5) {
       	alert("Please enter valid Zip Code");
		return false;
    } 

	document.getElementById("wrapper").style.display='none';
	document.getElementById("loading").style.display='block';
	return true;
	//window.location='search-results.php?category='+$F('category')+'&zip='+$F('zip')+'&radius='+$F('radius')+'&degree_type='+$F('degree_type');
}

function searchPrograms2() {
    var category = $F('areaSelect');
    if(category==0){
        alert('Please select an Area of Study');
        return false;
        
    }
	var address = $F('zipcode');
	if (address.length != 5) {
       	alert("Please enter valid Zip Code");
		return false;
    }
   
	document.getElementById("wrapper").style.display='none';
	 document.getElementById("loading").style.display='block';
	 //alert(center_lat+" and long "+center_lng);
     window.location='search-results.php?category='+category+'&zip='+address+'&radius='+$F('radius')+'&degree_type=0';
}
