function Ajax(){
var xmlHttp; 
    try{     
        xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari 
    } 
    catch (e){ 
        try{ 
            xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer 
        } 
        catch (e){ 
            try{ 
                xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); 
            } 
            catch (e){ 
                alert("No AJAX!?"); 
                return false; 
            } 
        } 
    } 

xmlHttp.onreadystatechange=function(){ 
    if(xmlHttp.readyState==4){ 
        document.getElementById('ReloadThis').innerHTML=xmlHttp.responseText; 
        setTimeout('Ajax()',100000); //tempo di refresh generale 
    } 
} 
xmlHttp.open("GET","count.php?rand="+escape(Math.random()),true);
xmlHttp.send(null); 
} 

window.onload=function(){ 
    setTimeout('Ajax()',500); //tempo di passaggio tra il testo iniziale del div e quello del file da importare aggiornato 
}

