
function formValidate(formularz,lng) {
	poprawnie = true;
	
	with (formularz) {
		
		if ( (telefon.value == "") && (email.value == "") && (fax.value == "")   ){
			poprawnie = false;
		} 
	}
	
	
	komunikat = 'Proszę podać telefon, numer faksu lub adres e-mail\naby można było się z Państwem skontaktować.';
	
	if (lng == 1) {
		komunikat = 'You must fill telephone, fax or email filed to answer your request.';
	}
	//alert(poprawnie);
	
	
	if (!(poprawnie)) {
		alert (komunikat);
	}
	
	
	
	return poprawnie;
}


