function checkForm(lang)
{
	var f = document.getElementById('my_form');

	if (f.tresc.value == ""){
		if (lang == "ang"){ 
			alert("Fill field Your message text");
		} else {		
			alert("Wypełnij pole Treść wiadomości. ");
		}
		return false;
	}	

	if (f.imie.value == ""){
		if (lang == "ang"){ 
			alert("Fill field Your Name/Company");
		} else {	
			alert("Wypełnij pole Nazwisko/Firma. ");
		}
		return false;
	}

	if (f.email.value == ""){
		if (lang == "ang"){ 
			alert("Fill field Your e-mail");
		} else {
			alert("Wypełnij poprawnie pole Twój adres e-mail. ");
		}
		return false;
	}
	

}
