function formOK(){
		var chyba = 0;
		if (document.getElementById("jmeno").value=="") chyba=1;
		if (document.getElementById("email").value=="") chyba=1;
		if (document.getElementById("zprava").value=="") chyba=1;
		
		if (chyba==0) return true; else {
			window.alert("Musíte vyplnit všechna povinná pole (Jméno, Email a Zprávu)");
			return false;
		}
	}
