function verifica_commenti_it()
{
	var email_match = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*\.(\w{2}|(com|net|org|edu|int|it|eu|co.uk|biz|aero|name|coop|info|pro|museum))$/
	var onlyletters = /^[a-zA-Z.-_]+$/;

	if( document.commentform.author.value == "" )
	{
		alert ("Il campo nome non è stato riempito");
		return false;
	}
	
	else if( (document.commentform.email.value == "") || (!email_match.test(document.commentform.email.value)) )
	{
		alert ("Inserite un indirizzo email corretto\nNon temete il vostro indirizzo non sarà pubblicato!");
		return false;
	}

	else if( document.commentform.comment.value == "" )
	{
		alert ("Non hai ancora scritto nessun commento");
		return false;
	}

	else
	{
		return true;
	}
}

