 function isValidEmail(s){
    var regexp = /^[^@]+@[^@]+.[a-z]{2,}$/i;
    return regexp.test(s);
}



