function validate()
{

	if ((document.f1.region.value=="0") && (document.f1.country.value=="0") && (document.f1.city.value=="0") && (document.f1.hname.value=="")) 
	{
	alert(" Please select hotel name");
	//document.f1.region.focus();
	return false;
	}
	
return true;

}
function validate1()
{

	if (document.f3.search.value=="") 
	{
	alert(" Please enter keyword");
	document.f3.search.focus();
	return false;
	}
		
return true;
}

