function Form1_Validator(theForm)
{

if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(theForm.email.value)){
return (true);
}
else
{
alert("Invalid E-mail Address! Please re-enter.");

return (false);
}

}

