godbrowser=0;
  function display(stuff) { window.status = stuff; }  


  godbrowser=1;

  boto1on  = new Image(16,36);
  boto1off = new Image(16,36);
  boto2on  = new Image(16,89);
  boto2off = new Image(16,89);
  boto3on  = new Image(16,92);
  boto3off = new Image(16,92);
  boto4on  = new Image(16,97);
  boto4off = new Image(16,97);
  boto5on  = new Image(16,73);
  boto5off = new Image(16,73);

  boto1on.src  = '../imatges/inici2.gif';
  boto1off.src = '../imatges/inici.gif';
  boto2on.src  = '../imatges/esperanto2.gif';
  boto2off.src = '../imatges/esperanto.gif';
  boto3on.src  = '../imatges/associacio2.gif';
  boto3off.src = '../imatges/associacio.gif';
  boto4on.src  = '../imatges/curs2.gif';
  boto4off.src = '../imatges/curs.gif';
  boto5on.src  = '../imatges/recursos2.gif';
  boto5off.src = '../imatges/recursos.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('');
  }

