<!-- This script  -->
<!-- The JavaScript  -->

<!-- Begin


function checkEmail(email) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email)){
return (true);
}
return (false);
}

function checkEmails(myForm) {
	if (!checkEmail(myForm.email.value)) {
		alert("Invalid E-mail Address! Please re-enter.")
	    return (false);
	}
	return (true);
}



// End -->

