function Validator(theForm) {
	if (document.theForm.E_mail.value.indexOf("@")<=0){
		alert("Please enter your email address");
		document.theForm.E_mail.focus();
	return (false);
	}
document.theForm.Email.value = document.theForm.E_mail.value;
return (true);
}
