// Script para efecto onMouseOver.

  var verok = 1; //version adecuada del navigator.
  browserName = navigator.appName;          
  browserVer = parseInt(navigator.appVersion);
  if ((browserName == "Netscape" && browserVer >= 3)
     || (browserName == "Microsoft Internet Explorer" && browserVer >= 4) ) {
    verok = 1;
  } else {
    verok = 0;
  };
  
  var path    = '../../../../imag/boto/';
  var imagidx = 'none'; // Imagen inicialmente seleccionada.

  function findIMG(nom) {
    var i,x;
    if (x = document[nom]) { 
        return x; 
    };
    if (document.layers) {
      for(i=0; i < document.layers.length; i++) {
        if (x = document.layers[i].document[nom]) {
          return x;
        };
      };
    }else{
      if (x = document.all[nom]) { return x; };
      if (x = document.getElementById(nom)) { return x; };
    };
  }; // findIMG

  function ima_ck(nom) {
    var aux = imagidx;
    imagidx = nom;
    ima_of(aux);
    ima_on(imagidx);
    return true;
  };

  function ima_on(nom) {
    var x;
    if ((verok == 1) && (nom != 'none') && (nom != imagidx)) {
      if (x = findIMG(nom)) {
        x.src = path + nom + '_on.gif';
        return true;
      };
    };
  };
  
  function ima_ac(nom) {
    var x;
    if ((verok == 1) && (nom != 'none')) {
      if (x = findIMG(nom)) {
        x.src = path + nom + '_on.gif'; // '_ac.gif';
        return true;
      };
    };
  };
  
  function ima_of(nom) {
    var x;
    if ((verok == 1) && (imagidx != nom) && (nom != 'none')) {
      if (x = findIMG(nom)) {
        x.src = path + nom + '_of.gif';
        return true;
      };
    };
  };
