<!--
function ValContact(theForm)
{
if (theForm.name.value=="")
{
	alert("Please enter your name");
	theForm.name.focus();
	theForm.name.style.borderColor="#9c2006";
	theForm.name.style.background="";
	return (false);
}
if (theForm.email.value =="")
{
	alert("Please enter your email address");
	theForm.email.focus();
	theForm.email.style.borderColor="#9c2006";
	theForm.email.style.background="";
	return false;
}
if (theForm.email.value.indexOf('@', 0) == -1) 
{
	alert("Not a valid email address");
	theForm.email.focus();
	theForm.email.style.borderColor="#9c2006";
	theForm.email.style.background="";
	return (false);
}
if (theForm.email.value.indexOf('.', 0) == -1) 
{
	alert("Not a valid email address");
	theForm.email.focus();
	theForm.email.style.borderColor="#9c2006";
	theForm.email.style.background="";
	return (false);
}
if (theForm.enquiry.value =="")
{
	alert("Please enter your address");
	theForm.enquiry.focus();
	theForm.enquiry.style.borderColor="#9c2006";
	theForm.enquiry.style.background="";
	return false;
}
if (theForm.how.value =="")
{
	alert("Please say how you heard about us");
	theForm.how.focus();
	theForm.how.style.borderColor="#9c2006";
	theForm.how.style.background="";
	return false;
}
return (true);
}
//-->
