function checkEmail( email ) {
    re = /^[\w\.\%\_\-]+@[\w\-]+\.[\w\.\-]+\w$/
    return email.match( re );
}
