function validaForm(theForm) {
	
	if (theForm.nome.value == '') {
		alert('Inserisci il tuo nome');
		theForm.nome.focus();
		return false;
	}
	
	if (theForm.email.value == '') {
		alert('Inserisci il tuo indirizzo e-mail');
		theForm.email.focus();
		return false;
	}
	
	if (!(theForm.email.value.search(/^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$/) != -1)) {
		alert("Inserisci un indirizzo e-mail valido")
		theForm.email.focus();
		theForm.email.select();
		return false;
	}
	
	if (theForm.commento.value == '') {
		alert('Scrivi il commento');
		theForm.commento.focus();
		return false;
	}
	
	return true;

}

window.onload = function mostraMessaggio() {
	var querystring = location.search;

	if (querystring == "?commento=inviato") {
		document.getElementById("testoFormCommenti").innerHTML = 'L\'e-mail con il tuo commento è stata inviata correttamente. Ti risponderò al più presto!';
	}
}