

function pegaElemento(nome){
    return document.all?document.all[nome]:document.getElementById(nome);
}


function abreFecha(obj){
              
    if(obj.style.display == 'none')
        obj.style.display = '';
    else
        obj.style.display = 'none';
}

