function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.usermail.value)){
return (true)
}
alert("This is not a valid Email address.")
return (false)
}

