function CheckITDonaBeni(form_name){
		
	theForm = document.forms[form_name];
	
	if (theForm.Testo.value == "")  {
		alert ("Descrivi i beni che desideri donare!")
		theForm.Testo.focus()
		theForm.Testo.select()
		return false;
	}
		
	InviaDati(form_name,'update/email_donazione_beni_IT.asp','Contenuto','email_donazione_beni_IT',null,null);
																
}
