<!-- MOSTRAR/OCULTAR CAPA -->
function flip(rid)
  		{
    		current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
    		document.getElementById(rid).style.display = current;
  		}
<!-- -->
