<!--
function CustRegFormValidator(theForm)
{
if (theForm.name.value=="")
{
	alert("PLEASE ENTER YOUR NAME");
	theForm.name.focus();
	theForm.name.style.backgroundColor="#DAE2EA";
	return (false);
	}
if (theForm.email.value =="")
{
	alert("PLEASE ENTER YOUR EMAIL ADDRESS");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#DAE2EA";
	return false;
	}
if (theForm.email.value.indexOf('@', 0) == -1) 
{
	alert("NOT A VALID EMAIL ADDRESS");
	theForm.email.focus();
	theForm.email.style.backgroundColor="#DAE2EA";
	return (false);
	}
if (theForm.telephone.value =="")
{
	alert("PLEASE ENTER YOUR TELEPHONE NUMBER");
	theForm.telephone.focus();
	theForm.telephone.style.backgroundColor="#DAE2EA";
	return false;
	}
if (theForm.enquiry.value =="")
{
	alert("PLEASE ENTER YOUR ENQUIRY");
	theForm.enquiry.focus();
	theForm.enquiry.style.backgroundColor="#DAE2EA";
	return false;
	}
return (true);
}
function CustRegFormValidatorNetscape(theForm)
{
if (theForm.name.value=="")
{
	alert("PLEASE ENTER YOUR NAME");
	theForm.name.focus();
	return (false);
	}
if (theForm.email.value =="")
{
	alert("PLEASE ENTER YOUR EMAIL ADDRESS");
	theForm.email.focus();
	return false;
	}
if (theForm.email.value.indexOf('@', 0) == -1) 
{
	alert("NOT A VALID EMAIL ADDRESS");
	theForm.email.focus();
	return (false);
	}
if (theForm.telephone.value =="")
{
	alert("PLEASE ENTER YOUR TELEPHONE NUMBER");
	theForm.telephone.focus();
	return false;
	}
if (theForm.enquiry.value =="")
{
	alert("PLEASE ENTER YOUR ENQUIRY");
	theForm.enquiry.focus();
	return false;
	}
return (true);
}
//-->
