function comprobarEmail(a){emailpat=/^\w+[\w\.-]*@\w+([\.-]?\w+)*(\.\w{2,4})+$/;if(!emailpat.test(a)){return false}return true};