
  <!--  
    var fertig = false;
    var vor = "";
    var nachStyle = "";
    var nach = "";
    var statuszeile = "<?print($titel);?>";

     // ########## Systemabfragen ##########     
    var isNav3 = false;
    var isNav4 = false;
    var isNav6 = false;
    var isIE4 = false;
    var isIE5 = false;
    var isOp = false;
    var browserName = (document.all && !document.styleSheets)? "opera5":navigator.appName.substring(0,8);
    var browserVersion = parseInt(navigator.appVersion);
    var agtent = navigator.userAgent.toLowerCase();
    var isMac = (navigator.appVersion.indexOf('Mac') != -1);        
    isOp = (browserName == "Opera");
    isGecko = ((agtent.indexOf('firefox') != -1) || (agtent.indexOf('gecko') != -1));    
    if (browserName == "Netscape") {
      isNav3 = (browserVersion == 3);
      isNav4 = (browserVersion == 4);    
      isNav6 = (browserVersion == 5);           
    }  
    if (browserName == "Microsof") {
     isIE4 = ( (browserVersion == 4) && (agtent.indexOf("msie 4") != -1) );
     isIE5 = (browserVersion >= 4);       
    }       
    var js12 = (isNav4 || isNav6 || isOp || isIE4 || isIE5);
    var js11 = (isNav3 || js12 );
    var modern = ( (isIE5 || isOp) || (isIE4 || isNav6) );
    if (isIE4) {
      vor = "document.all.";
      nachStyle = ".style";
    }
    if ( (isNav6 || isIE5) || isOp) { 
      vor = "document.getElementById('";
      nachStyle = "').style";
      nach = "')";
    }
    if (isNav4 || isNav3)
      vor = "document.";
    
    
    function show(obj) {
      // macht object sichtabr
      obj.visibility = "visible";
    }    
  
    function hide(obj) {
      // macht object sichtabr    
      obj.visibility = "hidden";
    }     
    
    function showObj(text) {  // zeigt object an in IE und Nav
      var obj = eval(vor + text + nachStyle);
      show(obj);
    }

    function hideObj(text) {  // zeigt object an in IE und Nav
      var obj = eval(vor + text + nachStyle);
      hide(obj);
    }      
   
    function geladen() {
      fertig = true;
    }
   
    function wechslebild(name,bild) {
      if (js11 && fertig) { 
        var obj = eval(vor + name + nach);
        obj.src = "./standard/" + bild + ".gif";  
      }
    }
   
    // ########## Bilder ##########    
    if (js11) {
      var ndummy1  = new Image();
      ndummy1.src  = "./standard/pfeilrunter.gif";  
      var ndummy2  = new Image();
      ndummy2.src  = "./standard/pfeilrunterrot.gif";  
    }
    
   function neuesfenster(adresse,festebreite,festehoehe) {
      if (js12) {
        var breite = 2*screen.availWidth/3;
        if (festebreite != 0) breite = festebreite;
        var hoehe = 2*screen.availHeight/3;
        if (festebreite != 0) hoehe = festehoehe;
        window.open(adresse, "fenster", "width="+breite+",height="+hoehe+",location=0,menubar=1,personalbar=0,status=0,resizable=1,scrollbars=1,toolbar=0,left=0,top=0");
      }
      else
        window.open(adresse, "fenster", "width=600,height=500,location=1,menubar=1,personalbar=1,status=1,resizable=1,scrollbars=1,toolbar=1,left=0,top=0");
    }
   
  //-->
