function checkForm() {
  var text = "";
  
  if(document.forms[0].meno.value == "") text = text+"- Meno a Priezvisko\n";
  if(document.forms[0].email.value == "") text = text+"- E-mail\n";
  if(document.forms[0].sprava.value == "") text = text+"- Správa pre nás\n";
  
  if(text != "") {
    text = "Tieto údaje sú povinné:\n==========================\n"+text+"==========================\nProsím vyplňte všetky povinné údaje.";
    alert(text);
    return false;
  } else return true;
}

function checkForm1() {
  var text = "";
  
  if(document.forms[0].meno.value == "") text = text+"- Meno a Priezvisko\n";
  
  if(text != "") {
    text = "Tieto údaje sú povinné:\n==========================\n"+text+"==========================\nProsím vyplňte všetky povinné údaje.";
    alert(text);
    return false;
  } else return true;
}
