OCULTO="none";
VISIBLE="block";



function mostraCataluna(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cataluna').style.display=VISIBLE;
}


function mostraAndalucia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('andalucia').style.display=VISIBLE;
}

function mostraMadrid(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('madrid').style.display=VISIBLE;
}

function mostraValencia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('valencia').style.display=VISIBLE;
}

function mostraCastillaleon(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('castillaleon').style.display=VISIBLE;
}
function mostraGalicia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('galicia').style.display=VISIBLE;
}



function ocultar(blo) {
  document.getElementById('cerrar').style.display=OCULTO;
  document.getElementById('madrid').style.display=OCULTO;
  document.getElementById('cataluna').style.display=OCULTO;
  document.getElementById('valencia').style.display=OCULTO;
  document.getElementById('andalucia').style.display=OCULTO;
  document.getElementById('castillaleon').style.display=OCULTO;
  document.getElementById('galicia').style.display=OCULTO;
}
