//Definición de imágenes
if (document.images) 
  {
  realprovisionon = new Image();
  realprovisionon.src = "../images/botones/real_sobre.gif";
  realprovisionoff = new Image();
  realprovisionoff.src = "../images/botones/real_arriba.gif";
  melithonon = new Image();
  melithonon.src = "../images/botones/melithon_sobre.gif";
  melithonoff = new Image();
  melithonoff.src = "../images/botones/melithon_arriba.gif";
  zagalonon = new Image();
  zagalonon.src = "../images/botones/zagalon_sobre.gif";
  zagalonoff = new Image();
  zagalonoff.src = "../images/botones/zagalon_arriba.gif";
  karavelon = new Image();
  karavelon.src = "../images/botones/karavel_sobre.gif";
  karaveloff = new Image();
  karaveloff.src = "../images/botones/karavel_arriba.gif";
  trajanoon = new Image();
  trajanoon.src = "../images/botones/trajano_sobre.gif";
  trajanooff = new Image();
  trajanooff.src = "../images/botones/trajano_arriba.gif";
  avanteon = new Image();
  avanteon.src = "../images/botones/avante_sobre.gif";
  avanteoff = new Image();
  avanteoff.src = "../images/botones/avante_arriba.gif";
  }

//ver capas
function verIFrame(index) 
  {
  parent.window.document.all.tags("IFRAME").item(index).style.visibility='visible';
  }
//ocultar capa
function ocultar(index) 
  {
    parent.window.document.all.tags("IFRAME").item(index).style.visibility='hidden'; 
  }

//activar-desactivar imagen
function Activo(imageName) 
  {
    if (document.images) {
      document[imageName].src = eval(imageName + "on.src");
    }
  }

function Desactivo(imageName) 
  {
    if (document.images) {
      document[imageName].src = eval(imageName + "off.src");
    }
  }

