<!--
function Validator(theForm) {
	if (theForm.name.value== "") {
	    alert("Please enter your Name");
    	theForm.name.focus();
    return (false);
	}
	if (theForm.telephone.value== "") {
		alert("Please enter a Contact 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);
    }
return (true);
}
//-->