<!--
URLALL = "http://www.go5.at/pics/im/buttons/";

if (document.images) {

  editoron = new Image();
  editoron.src = URLALL+"editor1.gif";
  editoroff = new Image();
  editoroff.src = URLALL+"editor2.gif";

  rubrikon = new Image();
  rubrikon.src = URLALL+"rubriken1.gif";
  rubrikoff = new Image();
  rubrikoff.src = URLALL+"rubriken2.gif";

  artneuon = new Image();
  artneuon.src = URLALL+"addartikel2.gif";
  artneuoff = new Image();
  artneuoff.src = URLALL+"addartikel1.gif";

  basison = new Image();
  basison.src = URLALL+"basis2.gif";
  basisoff = new Image();
  basisoff.src = URLALL+"basis1.gif";

  }

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

// -->
