function validate() {
	var errors = new Array();
	var message = document.getElementById('message');
	message = trim(message.value);
	if(!message.length) errors.push('Musisz wpisać wiadomość');
	var email = document.getElementById('email');
	email = trim(email.value);
	if(email == '') errors.push('Musisz wpisać adres e - mail');
	else {
			var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
			if(!filter.test(email)) errors.push('Wpisałeś adres e - mail w niepoprawnym formacie');
	}
	captcha = document.getElementById('captcha');
	captcha = trim(captcha.value);
	if(captcha == '') errors.push('Musisz wpisać kod z obrazka');
	else {
		var cookie = readCookie('captcha');
		var captchaMd5 = md5(captcha);
		if(cookie != captchaMd5) errors.push('Przepisany kod z obrazka nie jest poprawny');
	}
	if(errors.length) {
		alert(errors.join("\n"));
		return false;
	}
	return true;
}