// JavaScript Document
function sendSearch(theCategory){

	if(document.quickSearch.zipcode.value == ""){
		alert('Please enter zip code and distance to perform a search.');
	}
	else{
		
		document.quickSearch.categoryID.value = theCategory;
		document.quickSearch.submit();
	} 
}

function submitSearchForm()
{
	document.changeSearch.submit();
	//alert('hello');
}

