function error(tekst) {
	if (errfound) return;
		window.alert(tekst);
errfound = true;
}
function validate() {
	errfound = false;
	var bledy = "";
	with (document.forms[0]) {
		if (imie.value == "")  bledy += "Podaj Imie i Nazwisko. \n";
		if (email.value == "")	bledy += "Podaj adres email.\n";		
    if (comments.value == "") bledy += "Brak tresci!";
		if (bledy != "")  error(bledy); 
	}
return !errfound;
}
