<!--
function formValidate(){
var retutunValue=true;
if (document.contactForm.Name.value=="") 
	{
		alert("The name field must be filled in");
		retutunValue=false;
		return retutunValue;
	}
/*if (document.contactForm.Position.value=="") 
	{
		alert("The position field must be filled in");
		retutunValue=false;
		return retutunValue;
	}
if (document.contactForm.Company.value=="") 
	{
		alert("The Company field must be filled in");
		retutunValue=false;
		return retutunValue;
	}*/
if (document.contactForm.Address.value=="") 
	{
		alert("The Address field must be filled in");
		retutunValue=false;
		return retutunValue;
	}
if (document.contactForm.Town.value=="") 
	{
		alert("The Town / City field must be filled in");
		retutunValue=false;
		return retutunValue;
	}
/*if (document.contactForm.County.value=="") 
	{
		alert("The County field must be filled in");
		retutunValue=false;
		return retutunValue;
	}*/
if (document.contactForm.Postcode.value=="") 
	{
		alert("The Postcode field must be filled in");
		retutunValue=false;
		return retutunValue;
	}
if (document.contactForm.Country.value=="") 
	{
		alert("The Country field must be filled in");
		retutunValue=false;
		return retutunValue;
	}
/*if (document.contactForm.Tel.value=="") 
	{
		alert("The Telephone field must be filled in");
		retutunValue=false;
		return retutunValue;
	}*/
if (document.contactForm.email.value=="") 
	{
		alert("The Email field must be filled in");
		retutunValue=false;
		return retutunValue;
	}
return retutunValue;	
}
//-->

