function picturebig(cesta,sirka,vyska) {
  window.open(cesta,"","width="+sirka+", height="+vyska+",menubar=no,resizable=no,scrollbars=no,directories=no,status=no,toolbar=no,copyhistory=no,location=no,left=0,top=0");
}

function submitcheck() {
  if (document.getElementById("datumod").value=="") {
   alert("Nevyplnili jste datum Od.");
   return false;
  }
  if (document.getElementById("datumdo").value=="") {
   alert("Nevyplnili jste datum Do.");
   return false;
  }
  if (document.getElementById("name").value=="") {
   alert("Nevyplnili jste Jméno / název firmy.");
   return false;
  }
  if (document.getElementById("address").value=="") {
   alert("Nevyplnili jste Adresa / sídlo.");
   return false;
  }
  if (document.getElementById("kontaktniosoba").value=="") {
   alert("Nevyplnili jste Kontaktní osoba.");
   return false;
  }
  if (document.getElementById("telefon").value=="") {
   alert("Nevyplnili jste Telefon.");
   return false;
  }
}
