function controlConsulenza(){
	thisform = document.form_consulenza;
	
	if(thisform.id_consulenza.selectedIndex==0){
		alert("selezionare un'area di pertinenza");
		thisform.id_consulenza.focus();
		return;
	}
	
	if(thisform.domanda.value==''){
		alert("inserire una domanda");
		thisform.domanda.focus();
		return;
	}
	
	if(thisform.nome.value==''){
		alert("inserire il nome");
		thisform.nome.focus();
		return;
	}
	
	if(thisform.email.value==''){
		alert("inserire un indirizzo email");
		thisform.email.focus();
		return;
	}
	
	if(!checkEmailAddress(thisform.email)){
		return;
	}
	
	thisform.action = "_class/azioni.class.php";
	thisform.submit();
}

