function Validateminiform(){
	if(document.getElementById("S_name").value==""){
	alert("Please Enter your Name !");
	document.getElementById("S_name").focus();
	return false;	
	}
	if(document.getElementById("S_email").value==""){
	alert("Please enter your Email !");
	document.getElementById("S_email").focus();
	return false;	
	}
	if(document.miniform.S_phone.value==""){
	alert("Please enter your Contact Number !");
	document.miniform.S_phone.focus();
	return false;	
	}
	
	
	if(document.miniform.Day_of_travel.value==""){
	alert("Please Select The Date Of Travel !");
	document.miniform.Day_of_travel.focus();
	return false;	
	}
	
	if(document.miniform.Month_of_travel.value==""){
	alert("Please Select The Month Of Travel !");
	document.miniform.Month_of_travel.focus();
	return false;	
	}
	
	if(document.miniform.Year_of_travel.value==""){
	alert("Please Select The Year Of Travel !");
	document.miniform.Year_of_travel.focus();
	return false;	
	}
	if(document.miniform.Description2.value==""){
	alert("Please Enter the Requirements !");
	document.miniform.Description2.focus();
	return false;	
	}
	
	document.miniform.method="post";
	document.miniform.action="http://www.hotels-delhitourism.com/submit_smallform.asp";
	document.miniform.submit();
}