
function checkrequired_amico(which){
// Variabili associate ai campi del modulo

var nome = document.frm_amico.nome_amico.value; 
var testo = document.frm_amico.testo_amico.value; 
var email = document.frm_amico.email_amico.value; 
var email2 = document.frm_amico.email_amico2.value; 
var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/; 




if ((nome == "") || (nome == "undefined")) {
alert("Indicare il campo Nome.");
document.frm_amico.nome_amico.focus();
return false;
}

else if (!email_reg_exp.test(email) || (email == "") || (email == "undefined")) {
alert("Indicare il campo Tua Email.");
document.frm_amico.email_amico.select();
return false;
}

else if (!email_reg_exp.test(email2) || (email2 == "") || (email2 == "undefined")) {
alert("Indicare il campo Email del tuo Amico.");
document.frm_amico.email_amico2.select();
return false;
}

else if ((testo == "") || (testo == "undefined")) {
alert("Indicare il campo Testo.");
document.frm_amico.testo_amico.focus();
return false;
}
	
/*
else if (!(document.forms["frm_contatti"].privacy.checked) )
{
	alert("Non è stato autorizzato il trammento dei dati personali.");
	return false;
}
*/


	
		
/*
//INVIA MODULO NORMALE
else {
document.frm_amico.action = "contatti.php";
//document.frm_contatti.submit();
}
*/
}




//-->









		
		
