// Kontrola formuláře

function check_send_form() {
  if(document.getElementById(101).value=="") {
	chyba="Zadejte prosím své jméno.";
	alert(chyba);
	return false;
	}
  if(document.getElementById(102).value=="") {
	chyba="Zadejte prosím svůj telefon.";
	alert(chyba);
	return false;
	}
  if(document.getElementById(103).value=="") {
	chyba="Zadejte prosím svůj email.";
	alert(chyba);
	return false;
	}
  else document.forms['kontakt'].submit();
}
