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

function mostraFuncionalidad(blo) {
  document.getElementById('contenid').style.display=VISIBLE;
  document.getElementById('funcionalidad').style.display=VISIBLE;
  document.getElementById('cerrar').style.display=VISIBLE;
}
function mostraEstetica(blo) {
  document.getElementById('contenid').style.display=VISIBLE;
  document.getElementById('estetica').style.display=VISIBLE;
  document.getElementById('cerrar').style.display=VISIBLE;
}
function mostraCalidad(blo) {
  document.getElementById('contenid').style.display=VISIBLE;
  document.getElementById('calidad').style.display=VISIBLE;
  document.getElementById('cerrar').style.display=VISIBLE;
}
function mostraDurabilidad(blo) {
  document.getElementById('contenid').style.display=VISIBLE;
  document.getElementById('durabilidad').style.display=VISIBLE;
  document.getElementById('cerrar').style.display=VISIBLE;
}
function mostraSeguidad(blo) {
  document.getElementById('contenid').style.display=VISIBLE;
  document.getElementById('seguridad').style.display=VISIBLE;
  document.getElementById('cerrar').style.display=VISIBLE;
}
function mostraEconomia(blo) {
  document.getElementById('contenid').style.display=VISIBLE;
  document.getElementById('economia').style.display=VISIBLE;
  document.getElementById('cerrar').style.display=VISIBLE;
}





function ocultar(blo) {
  document.getElementById('contenid').style.display=OCULTO;
  document.getElementById('funcionalidad').style.display=OCULTO;
  document.getElementById('estetica').style.display=OCULTO;
  document.getElementById('calidad').style.display=OCULTO;
  document.getElementById('durabilidad').style.display=OCULTO;
  document.getElementById('seguridad').style.display=OCULTO;
  document.getElementById('economia').style.display=OCULTO;
}