function update_dati(U,L) {
    // branch for native XMLHttpRequest object
if (window.XMLHttpRequest) {
add_dato= new XMLHttpRequest();
add_dato.open("GET", "inc/email_update.asp?L="+ L +"&U="+ U +"&noCache="+ Math.floor(Math.random()*(9999)),true);
add_dato.send(null);

    // branch for IE/Windows ActiveX version
    } else if (window.ActiveXObject) {
add_dato= new ActiveXObject("Microsoft.XMLHTTP");
if (add_dato) {
add_dato.open("GET", "inc/email_update.asp?L="+ L +"&U="+ U +"&noCache="+ Math.floor(Math.random()*(9999)),true);
add_dato.send();
        }
    }
add_dato.onreadystatechange=function(){
		//alert(ajx.responseText)
        if (add_dato.readyState == 4 && add_dato.status==200){
//ho disabilitato l'eventuale messaggio di risposta dello script
				document.getElementById('risposta').innerHTML= add_dato.responseText;
				}
		else{
				document.getElementById('risposta').innerHTML= ""; //"Errore: "+ add_dato.status +" | Stato: "+ add_dato.readyState;
}
		}
}