function Validator(theForm) {
	if (theForm.Name.value== "") {
	    alert("Please enter your name");
    	theForm.Name.focus();
    return (false);
	}
	if (theForm.Telephone.value== "") {
	    alert("Please enter your telephone number");
    	theForm.Telephone.focus();
    return (false);
	}
	if (theForm.E_mail.value.indexOf("@")<=0){
		alert("Please enter your e-mail address");
		theForm.E_mail.focus();
	return (false);
	}
	if (theForm.Enquiry.value== "") {
	    alert("What is the nature of your enquiry?");
    	theForm.Enquiry.focus();
    return (false);
	}
return (true);
}