<!--
function ValCustCare(theForm)
{
if (theForm.name.value=="")
{
	alert("Please enter your name");
	theForm.name.focus();
	theForm.name.style.backgroundColor="#f4e7c2";
	return (false);
}
if (theForm.email.value =="")
{
	alert("Please enter your email address");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#f4e7c2";
	return false;
}
if (theForm.email.value.indexOf('@', 0) == -1) 
{
	alert("Not a valid email address");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#f4e7c2";
	return (false);
}
if (theForm.email.value.indexOf('.', 0) == -1) 
{
	alert("Not a valid email address");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#f4e7c2";
	return (false);
}
if (theForm.dtelephone.value=="")
{
	alert("Please enter your telephone number (day)");
	theForm.dtelephone.focus();
	theForm.dtelephone.style.backgroundColor="#f4e7c2";
	return (false);
}
if (theForm.address.value =="")
{
	alert("Please enter your address");
	theForm.address.focus();
	theForm.address.style.backgroundColor="#f4e7c2";
	return false;
}
if (theForm.contract.value =="")
{
	alert("Please enter your contract number");
	theForm.contract.focus();
	theForm.contract.style.backgroundColor="#f4e7c2";
	return false;
}
if (theForm.problem.value =="")
{
	alert("Please indicate the nature of your enquiry");
	theForm.problem.focus();
	theForm.problem.style.backgroundColor="#f4e7c2";
	return false;
}
return (true);
}
//-->

