funziona così? :master:

codice:
function Button1_onclick() 
{
    var idsito = [0,1,2,3,4,5,6,7,8,9,10,11,12,13];
    $("div1").innerHTML = "";
    var contatore = 0;
    fai_richiesta();
    
    function fai_richiesta()
    {
        ajax("?ajax_comando=1&idsito=" + idsito[contatore], onload);
    }
    
    
   function onload()
   {
        var t = this.request.responseText;
        var v = $("div1");
        v.innerHTML += t + "
";
        contatore++;
        if(contatore < idsito.length) fai_richiesta();
   } 
}