
PannelloXPSt = function (prefisso)
{
    var i=1;
    while(1)
    {
        var nome='xp' + prefisso + '_';
        if (i<10) nome += '0'+i;
        else nome += i;
        var id=document.getElementById(nome);
        if (!id) break;
        id.className='xp_pan_barra';
        id.style.lineHeight='25px';
        var id=document.getElementById(nome+'_contenuto');
        if (id)
        {
          id.className='xp_pan_contenuto';
        }
        
        i++;
    }
}


