function fun_iscriviti(formName)
	{
	var objForm = $(formName);
	var a,b,strAlert,strAlert1;
	a = 0;
	strAlert = "";
	var regMail = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$");
	
	if (objForm.nome.value == "")
	{
		a++;
		strAlert += "\n* Compila il campo nome";
	}
	if (objForm.cognome.value == "")
	{
		a++;
		strAlert += "\n* Compila il campo cognome";
	}
	if (!regMail.test(objForm.e_mail.value))
	{
		a++;
		strAlert += "\n* Inserisci un indirizzo e-mail valido;";
	}
	
		
	err_tot=a;
	
	if (a!=0)
	{
		window.alert("ATTENZIONE \n " + strAlert + "\n\nTOTALE ERRORI: " + err_tot);
		return false;
	}
	else {
		return true; 
	}
}

