// JavaScript Document
<!--
function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.e.value)){
return (true)
}
alert("Invalid e-mail address entered.")
return (false)
}
//-->