function ellenorzes(hol){ 
 
 // alapadatok ellenőrzése 
 if(hol.name.value== ""){
 alert("The 'Név' field is empty!");
 hol.name.focus();
 return false;
 }
 if(hol.mail.value== ""){
 alert("The 'E-mail' field is empty!");
 hol.mail.focus();
 return false;
 }
  str=hol.mail.value;
  filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
  if (!filter.test(str)){
  /*A kurzort berakjuk az email mezőbe*/
  hol.mail.focus();
  alert("Kérem egy valós email címet adjon meg!");
  return false;
  }
 if(hol.country.value== ""){
 alert("The 'Ország' field is empty!");
 hol.country.focus();
 return false;
 }
}

