function mailFormSubmit() {
	var autor    = document.getElementById("autor").value;
	var email   = document.getElementById("email").value;
	var comment   = document.getElementById("comment").value;

	if (autor == "" ||comment == "" || email == "") {
		alert("Podaj adres email, treść i swoje imię");
		return false;
	}
	
	if (!email.match(/^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$/)) {
		alert("Adres email jest nieprawidłowy!");
		return false;
	}

	return true;
}

function init() {
	var theForm = document.getElementById("invitationMailForm");
	theForm.onsubmit = mailFormSubmit;
}

window.onload = init;
