function Kontrola()
{
 if (document.form.jmeno.value == '')
  {
		alert('Vyplňte prosím pole "Jméno"');
		return false;
  }
 if (document.form.prijmeni.value == '')
  {
		alert('Vyplňte prosím pole "Přijímení"');
		return false;
  }
 if ( (document.form.telefon.value == '') && (document.form.email.value == '') && (document.form.jiny_kontakt_hodnota.value == '') )
  {
		alert('Vyplňte prosím alespoň jeden kontakt');
		return false;
  }
 
 return true;
}

