function Validate(form)
{
				
			v1=form.F_name
		if(isblank(v1)==false) 
	 		{
			alert("Name Can not be Blank");
			v1.focus(); 
			return false
			}	
			
			v1=form.S_name
		if(isblank(v1)==false) 
	 		{
			alert("Surname Can not be Blank");
			v1.focus(); 
			return false
			}	
			
			v1=form.phone
	if(isblank(v1)==false) 
		{
		alert("Phone Can not be Blank");
		v1.focus(); 
		return false
		}
	if(isNaN(form.phone.value)==true)
		{ 
		alert("Please enter numerics value!");
		return false	
		}
			
			
			v1=form.email
		if(isblank(v1)==false) 
			{
			alert("E-mail Can not be Blank");
			v1.focus(); 
			return false
			}
		if(isEmail(v1)==false) 
			{
			alert("The email \""+ v1.value+" \"is not valid email");
			v1.focus(); 
			return false;
			}
									
		v1=form.address
		if(isblank(v1)==false) 
			{
			alert("Address Can not be Blank");
			v1.focus(); 
			return false
			}
			
			v1=form.postcode
		if(isblank(v1)==false) 
			{
			alert("Postcode Can not be Blank");
			v1.focus(); 
			return false
			}
			
			v1=form.town
		if(isblank(v1)==false) 
			{
			alert("Town Can not be Blank");
			v1.focus(); 
			return false
			}
			
			v1=form.country
		if(isblank(v1)==false) 
			{
			alert("Country Can not be Blank");
			v1.focus(); 
			return false
			}
			
			v1=form.about
		if(isblank(v1)==false) 
			{
			alert("About Us Can not be Blank");
			v1.focus(); 
			return false
			}
			
						
			v1=form.tour_plan
		if(isblank(v1)==false) 
			{
			alert("Tour-Plan Can not be Blank");
			v1.focus(); 
			return false
			}
			v1=form.flexibility
		if(isblank(v1)==false) 
			{
			alert("Dates and Flexibility Can not be Blank");
			v1.focus(); 
			return false
			}
			
			v1=form.accomm
		if(isblank(v1)==false) 
			{
			alert("Accommodation Can not be Blank");
			v1.focus(); 
			return false
			}
			
			v1=form.accomm
		if(isblank(v1)==false) 
			{
			alert("Accommodation Can not be Blank");
			v1.focus(); 
			return false
			}
			
	return true;
}




function isblank(s3) 
{
	if (s3.value == "") 
	{
	return false;
	}
else 
	{
	return true;
   }
}



function isEmail(s2) 
{
	if ((s2.value == "" || s2.value.indexOf('@', 0) == -1) || s2.value.indexOf('.')<5) 
	{
	return false;
	}
else {
	return true;
   	}
}



