var Text = "--- !!!  Jetzt auch Wetter und WebCams, unter -Die Lahn- !!!  ---";
var Geschwindigkeit = 70;
var Breite = 300;
var TextLaenge;
var Position = 1 - Breite;

function StatusLauftext(LaufText,LaufTextBreite)
{
 window.status = LaufText;
 Text = LaufText;
 Breite = LaufTextBreite;
 TextLaenge = Text.length;
 StatusLauftextAusgabe();
}

/*-------------------------------------------------------------------------*/	
function StatusLauftextAusgabe()
{
 Position++;
 var Textzustand="";
 if (Position == TextLaenge)
  {
   Position = 1 - Breite;
  }
 if (Position < 0) 
  {
   for (var Zaehler=1; Zaehler <= Math.abs(Position); Zaehler++) 
    {
     Textzustand = Textzustand + " ";
    };
   Textzustand = Textzustand + Text.substring(0, Breite - Zaehler + 1);
  }
 else 
  {
   Textzustand = Textzustand + Text.substring(Position, Breite + Position);
  }
 window.status = Textzustand;
 setTimeout("StatusLauftextAusgabe()",Geschwindigkeit);
}
/*-------------------------------------------------------------------------*/
