// ******************************** LAYER ESCONDE *******************************
// -------------------------------------------
function esconder(midiv) {
  var thediv = document.getElementById(midiv);
  thediv.style.display = "none";
}; // esconder.
// -------------------------------------------
function mostrar(midiv) {
  var thediv = document.getElementById(midiv);
  thediv.style.display = "inline";
}; // mostrar.

/*FIN*/

