// sets the status bar text
  // delay fixes the NS 6.2.x/Mozilla 0.9.4 bug
  // works with the other browsers too
  function ss(text) { // ss = set status
      window.status=text;
      //window.setTimeout("window.status=\"" + text + "\"",5);
      return true;
//BUG Mozilla mit abgeschalteter Statusleistenänderung
//http://bugzilla.mozilla.org/show_bug.cgi?id=40838
      };
  function us() { // us = unset status
      window.status=window.defaultStatus;
      //return true;
      };


