OCULTO="none";
VISIBLE="block";

function mostraGalicia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('galicia').style.display=VISIBLE;
}

function mostraAsturias(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('asturias').style.display=VISIBLE;
}

function mostraCantabria(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cantabria').style.display=VISIBLE;
}

function mostraPvasco(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('pvasco').style.display=VISIBLE;
}

function mostraNavarra(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('navarra').style.display=VISIBLE;
}

function mostraLarioja(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('larioja').style.display=VISIBLE;
}

function mostraAragon(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('aragon').style.display=VISIBLE;
}

function mostraCataluna(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cataluna').style.display=VISIBLE;
}

function mostraCleon(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cleon').style.display=VISIBLE;
}

function mostraMadrid(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('madrid').style.display=VISIBLE;
}

function mostraCmancha(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('cmancha').style.display=VISIBLE;
}

function mostraValencia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('valencia').style.display=VISIBLE;
}

function mostraExtremadura(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('extremadura').style.display=VISIBLE;
}

function mostraMurcia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('murcia').style.display=VISIBLE;
}

function mostraAndalucia(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('andalucia').style.display=VISIBLE;
}

function mostraCeuta(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('ceuta').style.display=VISIBLE;
}

function mostraCanarias(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('canarias').style.display=VISIBLE;
}

function mostraPortugal(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('portugal').style.display=VISIBLE;
}

function mostraBaleares(blo) {
  document.getElementById('cerrar').style.display=VISIBLE;
  document.getElementById('baleares').style.display=VISIBLE;
}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

function ocultar(blo) {
  document.getElementById('cerrar').style.display=OCULTO;
  document.getElementById('galicia').style.display=OCULTO;
  document.getElementById('asturias').style.display=OCULTO;
  document.getElementById('cantabria').style.display=OCULTO;
  document.getElementById('pvasco').style.display=OCULTO;
  document.getElementById('navarra').style.display=OCULTO;
  document.getElementById('aragon').style.display=OCULTO;
  document.getElementById('cataluna').style.display=OCULTO;
  document.getElementById('cleon').style.display=OCULTO;
  document.getElementById('madrid').style.display=OCULTO;
  document.getElementById('cmancha').style.display=OCULTO;
  document.getElementById('valencia').style.display=OCULTO;
  document.getElementById('larioja').style.display=OCULTO;
  document.getElementById('extremadura').style.display=OCULTO;
  document.getElementById('murcia').style.display=OCULTO;
  document.getElementById('andalucia').style.display=OCULTO;
  document.getElementById('ceuta').style.display=OCULTO;
  document.getElementById('canarias').style.display=OCULTO;
  document.getElementById('portugal').style.display=OCULTO;
  document.getElementById('baleares').style.display=OCULTO;

}