      function status_line(x)
      {
      var msg  = "Herzlich Willkommen zur Internetpräsenz der Glaser-Innung Düsseldorf  ";
      var out = " ";
      var c   = 1;
      var e   = 120;
      if (x > e)
      {
        x--;
        var cmd="status_line(" + x + ")";
        timerTwo=window.setTimeout(cmd,100);
      }
      else if (x <= e && x > 0)
      {
        for (c=0 ; c < x ; c++)
        {
          out+=" ";
        }
        out+=msg;
        x--;
        var cmd="status_line(" + x + ")";
        window.status=out;
        timerTwo=window.setTimeout(cmd,100);
      }
      else if (x <= 0)
      {
        if (-x < msg.length)
        {
          out+=msg.substring(-x,msg.length);
          x--;
          var cmd="status_line(" + x + ")";
          window.status=out;
          timerTwo=window.setTimeout(cmd,100);
        }
        else
        {
          window.status=" ";
          timerTwo=
          window.setTimeout("status_line("+e+")",100);
        }
      }
    }

