<!--
function ValContact(theForm)
{
if (theForm.name.value=="")
{
	alert("Please enter your name");
	theForm.name.focus();
	theForm.name.style.backgroundColor="#EEC6D9";
	return (false);
}
if (theForm.email.value =="")
{
	alert("Please enter your email address");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.email.value.indexOf('@', 0) == -1) 
{
	alert("Not a valid email address");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#EEC6D9";
	return (false);
}
if (theForm.email.value.indexOf('.', 0) == -1) 
{
	alert("Not a valid email address");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#EEC6D9";
	return (false);
}
//if (theForm.telephone.value =="")
//{
//	alert("Please enter your telephone number");
//	theForm.telephone.focus();
//	theForm.telephone.style.backgroundColor="#EEC6D9";
//	return false;
//}
if (theForm.address.value =="")
{
	alert("Please enter your address");
	theForm.address.focus();
	theForm.address.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.arrivalmonth.value =="")
{
	alert("Please enter a complete arrival date");
	theForm.arrivalmonth.focus();
	theForm.arrivalmonth.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.arrivalday.value =="")
{
	alert("Please enter a complete arrival date");
	theForm.arrivalday.focus();
	theForm.arrivalday.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.arrivalyear.value =="")
{
	alert("Please enter a complete arrival date");
	theForm.arrivalyear.focus();
	theForm.arrivalyear.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.nights.value =="")
{
	alert("Please select the number of nights you wish to stay");
	theForm.nights.focus();
	theForm.nights.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.group.value =="")
{
	alert("Please enter details of your group");
	theForm.group.focus();
	theForm.group.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.contact.value =="")
{
	alert("Please indicate how you would like to be contacted");
	theForm.contact.focus();
	theForm.contact.style.backgroundColor="#EEC6D9";
	return false;
}
if ((theForm.contact.value =="Telephone") && (theForm.telephone.value ==""))
{
	alert("Contact by telephone selected but no daytime number entered");
	theForm.telephone.focus();
	theForm.telephone.style.backgroundColor="#EEC6D9";
	return false;
}
if ((theForm.contact.value =="Email") && (theForm.email.value ==""))
{
	alert("Contact by email selected but no email address entered");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#EEC6D9";
	return false;
}
if ((theForm.contact.value =="Post") && (theForm.address.value ==""))
{
	alert("Contact by post selected but no address entered");
	theForm.address.focus();
	theForm.address.style.backgroundColor="#EEC6D9";
	return false;
}
if (theForm.how.value =="")
{
	alert("Please tell us how you found our web site");
	theForm.how.focus();
	theForm.how.style.backgroundColor="#EEC6D9";
	return false;
}
return (true);
}
//-->

