function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.r_email.value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
document.portalInfo.r_email.focus();
return (false)
}
