function fz_inviaDatiAccount(email)
//FUNZIONE OBSOLETA
{
	new Ajax.Request("/xtlmk/clienti/aretengineering/frontend/inviaInformazioniAccount.asp",{method:"post", parameters:"email="+email,
		onFailure: function(t) {alert('Error ' + t.status + ' -- ' + t.statusText +' ');},
		onComplete:function(x){
			if (x.responseText == 'True') 
				{
				//alert("A new password was sent to your e-mail address");
				window.location.replace(window.location+"?email=OK")
				}
			else
				{
				//alert("WARNING!\nUnknown e-mail address. Please retry, or Contact Aret for support");
				window.location.replace(window.location+"?email=KO")
				}
		}});
}