function Validator(theForm){
	var tempflag=false;
	if (theForm.email.value.indexOf("@")<=0){
		alert("Please enter your CORRECT E-mail Address.");
		theForm.email.focus();
		return (false);
	}
}
