<!--
NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;

// Browserabhaengige Informationen
var nn = (navigator.appName == "Netscape") ? true : false
var glostat = true
var instat = false

function zeigen(lay, text, lnk)
{
if (glostat)
 {
  with(nn ? document.layers[lay] : document.all[lay])
  {
    if(nn)
    {
      with(document)
      {
        open("text/html")
        write("<TABLE border=\"3\" CELLPADDING=\"3\" CELLSPACING=\"0\" CLASS=\"gl\"              WIDTH=\"100\"><TR><TD><SMALL>" + text + "</SMALL></TD></TR></TABLE>")
        close()
      }
      left = lnk.x - 40
      top  = lnk.y - 40
      if((160 + left) > innerWidth)
      {
        left -= 32
        if((4 * left) > (3 * innerWidth))
          left -= 16
      }
      visibility = "show"
    }
    else
    {
     // Explorer wird über title=... gesteuert
    }
  }
 }
}

function glozeigen(lay, text, lnk)
{
if (glostat)
 {
  with(nn ? document.layers[lay] : document.all[lay])
  {
    if(nn)
    {
      with(document)
      {
        open("text/html")
        write("<TABLE border=\"3\" CELLPADDING=\"3\" CELLSPACING=\"0\" CLASS=\"gl\"              WIDTH=\"240\"><TR><TD><SMALL>" + text + "</SMALL></TD></TR></TABLE>")
        close()
      }

      left = lnk.x + 50
      top  = lnk.y - 40
      if((160 + left) > innerWidth)
      {
        left -= 32
        if((4 * left) > (3 * innerWidth))
          left -= 16
      }
      visibility = "show"
    }
    else
    {
     // Explorer wird über title=... gesteuert
    }
  }
 }
}

function verstecken(lay)
{
  if(nn)
    document.layers[lay].visibility = "hide"
  else
    document.all[lay].style.visibility = "hidden"
}

function showHilfe()
{
hilfeWin = open("hilfe.html","displayWindow","width=350,height=450,status=no,toolbar=no,menubar=no,z-lock=yes");
}

function showInhalt()
{
  if (instat == true ) {
   instat = false
   mylist.deselect(9)
   // mylist.lyr.wipeTo(0,0,0,0,15,10)
   mylist.lyr.hide()

}
else
{
   instat = true
   mylist.lyr.show()
   // mylist.lyr.wipeTo(null,inhaltW,inhaltH,null,15,10)

}
}



// -->