function validatehotel()
	{
		var emailfilter=/^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i
		var e=document.addhotel.email.value
		var returnval=emailfilter.test(e)
		
		if (document.addhotel.name.value=="")
			{
				alert ("Please Enter Name");
				document.addhotel.name.focus()
				return false;
			}		
		else if (returnval==false)
			{
				alert("Please enter a Valid Email Address.")
				document.addhotel.email.focus()
				return false;
			}
		else if (document.addhotel.hname.value=="")
			{
				alert ("Please Enter Hotel Name");
				document.addhotel.hname.focus()
				return false;
			}
	else if (document.addhotel.hlocation.value=="")
			{
				alert ("Please Enter Hotel Location");
				document.addhotel.hlocation.focus()
				return false;
			}
		else if(document.addhotel.state.selectedIndex==0)
				{
				alert("Please Select State.");
				document.addhotel.state.focus();
				return false;
				}
	else if (document.addhotel.hphone.value=="")
			{
				alert ("Please Enter Hotel Phone Number");
				document.addhotel.hphone.focus()
				return false;
			}

	
	}
