function validaForm_mailSindaco(){

	var nome = document.mail_sindaco.nome.value;
	var mail = document.mail_sindaco.mail.value;
	var testo = document.mail_sindaco.testo.value;
	var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;

	
	if ((nome == "") || (nome == "undefined")) {
   		alert("Il campo Nome è obbligatorio.");
   		document.mail_sindaco.nome.focus();
   		return false;
	} 
	
	if (!email_reg_exp.test(mail) || (mail == "") || (mail == "undefined")) {
           alert("Inserire un indirizzo email corretto.");
           document.mail_sindaco.mail.focus();
           return false;
        }
		
	if ((testo == "") || (testo == "undefined")) {
   		alert("Il campo Testo è vuoto.");
   		document.mail_sindaco.testo.focus();
   		return false;
	} 

	
	
	
   	   return true;
	


}