function dataValidation() 
{
  var email = document.getElementById('email').value;
  if (!checkEmail(email))
  {
    alert('Az E-mail cím mező nincs megfelelően kitöltve!');
    return false;
  }
  
  return true;
}

function checkEmail(email) 
{
  var filter = /^([a-z0-9_\.\-])+\@(([a-z0-9\-])+\.)+([a-z0-9]{2,4})+$/i;
  
  if (!filter.test(email)) {
    return false;
  }
  
  return true;
}
