  function CheckMailAddress(mail) {
      li_dot=mail.lastIndexOf(".");
      i_at=mail.indexOf("@");
      if(li_dot>=0 && i_at>0 && li_dot>i_at+1) return true;
      else return false;
  }


  function MotivDalsiZbozi(form)
  {
    if(document.getElementById('poslat_dalsi').value==1)
    {
      document.getElementById('poslat_dalsi').value=0;
      
      if(form.druh.value == "vyber") 		{ alert("Není vybráno oddělení"); return false;  }
    }
    return true; // all is OK, submit it
  }
  
  function MotivPorovnani(form)
  {
    if(document.getElementById('poslat_porovnani').value==1)
    {
      document.getElementById('poslat_porovnani').value=0;
      
      if((form.porovnani_1.value == "vyber") && (form.porovnani_2.value == "vyber")) { alert("Není vybrána vakcína na porovnání"); return false;  }
    }
    return true; // all is OK, submit it
  }
  
 
