/*  Email validation
    This is a pretty simple script to check that we are getting valid email
    address from people signing up for the MPT mailing list. tallyoooho!
*/

function checkEmail(emailform) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(emailform.from.value)){
return (true)
}
alert("Invalid Email Address. Please enter a correct Email address.")
return (false)
}
