var QtdAbas = 0;
function CriaAbas(Texto, Url, ID, SpaDestino){
    aTexto = Texto.split(";");
    aUrl = Url.split(";");
    var html = '<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>';
    QtdAbas = aTexto.length;
    TamanhoTd = parseInt(100 / QtdAbas);
    for(i = 0; i<=aTexto.length-1;i++){
        html += '<td nowrap id="Aba' + ID + i + 'E" width="1%" tipo="pd" width="15"><img src="img/aba_vem_esq.png" width="15" height="23"></td>';
        html += '<td nowrap id="Aba' + ID + i + 'C" width="' + TamanhoTd + '%" tipo="m" background="img/aba_vem_f_01.png" class="texto1" onselectstart="return false;" onclick="MudaAba(' + i + ',\'' + aUrl[i] + '\',\'' + ID + '\',\'' + SpaDestino + '\')">' + aTexto[i] + '<td>';
        html += '<td nowrap id="Aba' + ID + i + 'D" width="1%" tipo="pe" width="15"><img src="img/aba_vem_dir.png" width="15" height="23"></td>';
    }
    html += '</tr></table>';
    return(html);
}

function ZeraAbas(ID){
    for(i = 0; i<=QtdAbas-1;i++){
        try{
            var AbaE = document.getElementById("Aba" + ID + i + "E"); 
            var AbaC = document.getElementById("Aba" + ID + i + "C"); 
            var AbaD = document.getElementById("Aba" + ID + i + "D"); 
        
            AbaE.innerHTML = '<img src="img/aba_vem_esq.png" width="15" height="23">';
            AbaC.style.background = 'url(img/aba_vem_f_01.png)';
            AbaD.innerHTML = '<img src="img/aba_vem_dir.png" width="15" height="23">';
        }
        catch(e){}
    }
}

function MudaAba(Nro, URL, ID, SpaDestino){
    $("#Carregando").show("normal");
    ZeraAbas(ID);
    
    var AbaE = document.getElementById("Aba" + ID + Nro + "E"); 
    var AbaC = document.getElementById("Aba" + ID + Nro + "C"); 
    var AbaD = document.getElementById("Aba" + ID + Nro + "D"); 
    
    AbaE.innerHTML = '<img src="img/aba_vem_esq_02.png" width="15" height="23">';
    AbaC.style.background = 'url(img/aba_vem_f_02.png)';
    AbaD.innerHTML = '<img src="img/aba_vem_dir_02.png" width="15" height="23">';
    
    $("#" + SpaDestino).load(URL, {limit: 25}, function() {$("#Carregando").hide("normal")});
}