 
  function checkForm() {
   if (document.form.name.value == "") {
      document.form.name.focus();
      alert("Prosím zadajte Vaše meno.");
      return false;
    }
   if (document.form.tel.value == "" && document.form.email.value == "") {
      document.form.email.focus();
      alert("Prosím zadajte e-mail alebo telefónne číslo.");
      return false;
    }
   if (document.form.msg.value == "") {
      document.form.msg.focus();
      alert("Prosím zadajte Vašu otázku.");
      return false;
    }
} 
    

