// JavaScript Document

    function kontrola_kontakt(){

    var tel=document.getElementById("tel").value;

    var volat=document.getElementById("volat").value;   

      if((tel=="")||(volat=="")){

     window.alert("Musíte vyplnit alespoň telefon a kdy máme volat!\n");

      return false;

     }

     else{

     return true;

     }

    }

    



    
