<!--
// Browser ermitteln
var NS4 = 1;
var NS6 = 2;
var IE  = 3;
var MO  = 4;
BrowserCode = 0;

// Netscape ?
if (navigator.appName.indexOf("Netscape") != -1) {
  if (document.layers) BrowserCode = NS4;
  else BrowserCode = NS6;
}

// MSIE oder Mozilla?
else if (document.all) BrowserCode = IE;
else if (document.getElementById) BrowserCode = MO;

// EventFunktion
function Placing(x) {
  if(BrowserCode == NS4) {
    document.help.top=x;
    document.help.left=3;
  } else if (BrowserCode == NS6) {
    document.getElementById("help").style.top=x;
    document.getElementById("help").style.left=3;
  } else if (BrowserCode == IE) {
    document.all.help.style.top=x;
    document.all.help.style.left=3;
  }

  if (x < -1) {
    setTimeout("Placing("+(x+2)+")",75);
  }
}

// Info ueber einen Typ ausgeben
function infoAbout(x) {
  if (document.all) {
    document.all.help.style.visibility=(x)?"inherit":"hidden";
  } else if (document.getElementById) {
    document.getElementById("help").style.visibility=(x)?"inherit":"hidden";
  } else {
    document.help.visibility=(x)?"inherit":"hidden";
  }
}

//-->
