
function checkformrezervace ( form )
{
  var chyba = "";


  if (form.jmeno.value == "") {
	  chyba += "Vyplňte jméno. \n";
  }
  
  if (form.datum_rezervace.value == "") {
	  chyba += "Vyplňte datum. \n";
  } 
  if (form.osob.value == "") {
	  chyba += "Vyplňte počet osob. \n";
  }  
  if (form.hodina.value == "") {
	  chyba += "Vyplňte hodinu. \n";
  }
	if(chyba != "") {
		alert(chyba);
		return false ;
	}
 
  return true ;
}



