<!--
	function Validate(){

	if (document.venuSearch.t_city.options[document.venuSearch.t_city.selectedIndex].value == 0 && document.venuSearch.t_place.options[document.venuSearch.t_place.selectedIndex].value == 0 && document.venuSearch.t_category.options[document.venuSearch.t_category.selectedIndex].value == 0){
	alert("Please, select atleast one option to search. ");
  	document.venuSearch.t_city.focus();
	return false;
	}
	
	/* if (document.venuSearch.t_place.options[document.venuSearch.t_place.selectedIndex].value == 0){
	alert("Please, select place. ");
  	document.venuSearch.t_place.focus();
	return false;
	}
	
	if (document.venuSearch.t_category.options[document.venuSearch.t_category.selectedIndex].value == 0){
	alert("Please, select category. ");
  	document.venuSearch.t_category.focus();
	return false;
	}*/
		
	return true;
	}

	
	function ValidateSearch(){

	if (document.frmSearch.t_city.options[document.frmSearch.t_city.selectedIndex].value == 0 && document.frmSearch.t_place.options[document.frmSearch.t_place.selectedIndex].value == 0 && document.frmSearch.t_category.options[document.frmSearch.t_category.selectedIndex].value == 0){
	alert("Please, select atleast one option to search. ");
  	document.frmSearch.t_city.focus();
	return false;
	}
	
	/* if (document.venuSearch.t_place.options[document.venuSearch.t_place.selectedIndex].value == 0){
	alert("Please, select place. ");
  	document.venuSearch.t_place.focus();
	return false;
	}
	
	if (document.venuSearch.t_category.options[document.venuSearch.t_category.selectedIndex].value == 0){
	alert("Please, select category. ");
  	document.venuSearch.t_category.focus();
	return false;
	}*/
		
	return true;
	}	
-->