// JavaScript Document


function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.EMail.value)){
return (true)
}
alert("The E-Mail Address you have entered is Invalid! \n\nPlease re-enter using the following format: \n\nyourname@yourdomain.suf")
return (false)
}