<!--
function validaFormUtente() {	

	var qualecampo="";
	var mancanti=0;
	var linguescelte=0;
	
	//controllo i campi di testo
	for (i=0; i<document.forms[0].elements.length; i++) {
		if (document.forms[0].elements[i].type=="text") {
			if (document.forms[0].elements[i].value=="") {
				mancanti=mancanti+1;
				qualecampo+=document.forms[0].elements[i].name + "\n";
			}
		}
	}
	
	if (document.getElementById("email").value!="") {
	   EmailAddr = document.getElementById("email").value;
   		Filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
   		if (!Filtro.test(EmailAddr)) {
      		alert("Indirizzo e-mail non valido");
      		document.getElementById("email").focus();
      		return false;
		}
	}	
	
	//controllo che abbia scelto l'interesse
	if (document.getElementById("interesse").value=="") {
		mancanti=mancanti+1;
		qualecampo+=document.getElementById("interesse").name + "\n";
	}
	
	if (mancanti>0) {
		alert("Riempire i campi:\n"+qualecampo);
		return false;
	}
}

function validaMail() {
	
	}
//-->

