function show(id) {
         document.getElementById('_'+id).style.display = 'block';
         document.getElementById('img'+id).src = '/ximages/btn_cerrar.gif';
         document.getElementById('link'+id).href = 'javascript:hide('+id+')';
}

function hide(id) {
         document.getElementById('_'+id).style.display = 'none';
         document.getElementById('img'+id).src = '/ximages/btn_abrir.gif';
         document.getElementById('link'+id).href = 'javascript:show('+id+')';
}