function mostrar(enla,key) 
{
    obj = document.getElementById('oculto'+key);
    obj.style.display = (obj.style.display == 'block') ? 'none' : 'block';
    enla.innerHTML = (enla.innerHTML == 'Contraer') ? 'M&aacute;s info' : 'Contraer';
}

