function isEmpty(el) {
  return el.value=='';
}

function isEmail(el) {
  return /^.+\@.+\..+$/.test(el.value)
}