OCULTO="none";
VISIBLE="block";

function mostraAsturias(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('asturias').style.display=VISIBLE;
}
function mostraEuskadi(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('euskadi').style.display=VISIBLE;
}
function mostraCataluna(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cataluna').style.display=VISIBLE;
}
function mostraAragon(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('aragon').style.display=VISIBLE;
}
function mostraCmancha(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cmancha').style.display=VISIBLE;
}
function mostraMadrid(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('madrid').style.display=VISIBLE;
}
function mostraCleon(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cleon').style.display=VISIBLE;
}
function mostraValencia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('valencia').style.display=VISIBLE;
}
function mostraAndalucia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('andalucia').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('asturias').style.display=OCULTO;
  document.getElementById('euskadi').style.display=OCULTO;
  document.getElementById('aragon').style.display=OCULTO;
  document.getElementById('cataluna').style.display=OCULTO;
  document.getElementById('cleon').style.display=OCULTO;
  document.getElementById('cmancha').style.display=OCULTO;
  document.getElementById('valencia').style.display=OCULTO;
  document.getElementById('andalucia').style.display=OCULTO;
  document.getElementById('madrid').style.display=OCULTO;
   document.getElementById('galicia').style.display=OCULTO;
}