function checkEmail(EForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(EForm.emailAddr.value)){
return (true)
}
alert("Invalid Email Address! Please re-enter a valid email address")
return (false)
}