godbrowser=0;
  function display(stuff) { window.status = stuff; }  


  godbrowser=1;

  boto1on  = new Image(16,68);
  boto1off = new Image(16,68);
  boto2on  = new Image(16,31);
  boto2off = new Image(16,31);
  boto3on  = new Image(16,78);
  boto3off = new Image(16,78);
  boto4on  = new Image(16,63);
  boto4off = new Image(16,63);
  boto5on  = new Image(16,83);
  boto5off = new Image(16,83);
  boto6on  = new Image(16,64);
  boto6off = new Image(16,64);

  boto1on.src  = '../imatges/startejo2.gif';
  boto1off.src = '../imatges/startejo.gif';
  boto2on.src  = '../imatges/kea2.gif';
  boto2off.src = '../imatges/kea.gif';
  boto3on.src  = '../imatges/katalunio2.gif';
  boto3off.src = '../imatges/katalunio.gif';
  boto4on.src  = '../imatges/forumo2.gif';
  boto4off.src = '../imatges/forumo.gif';
  boto5on.src  = '../imatges/eltondajoj2.gif';
  boto5off.src = '../imatges/eltondajoj.gif';
  boto6on.src  = '../imatges/utilajoj2.gif';
  boto6off.src = '../imatges/utilajoj.gif';

function HighLight(musboto){
    if (godbrowser)
    {
      botonavn = eval(musboto + "on");
      document [musboto].src = botonavn.src;
    }
  }
  function UndoHighLight(musboto){
    if (godbrowser)
    {
      botonavn = eval(musboto + "off");
      document [musboto].src = botonavn.src;
    }
   display('');
  }
