var Text = " ***     Welcome on the homepage of HELIWEB !   -   Please take some time and surf with us through the fascinating word of helicopters. On the next pages you will find interesting pictures and much more about helicopters.   -   Your HELIWEB-Team wishes a lot of fun by your turn around !   ***  ";  
	var Geschwindigkeit = 100;   
	var Breitey = 300;
	var Breitex = 60            
	var TextLaenge = Text.length; 
	var Position = 1 - Breitex;   

   function StatusLauftext()    
   	{
    Position++;
    var Textzustand="";
    if (Position == TextLaenge) 
   	{
    Position = 1 - Breitey;
   	}
    if (Position < 0) 
   	{
      for (var Zaehler=1; Zaehler <= Math.abs(Position); Zaehler++) 
     	{
       Textzustand = Textzustand + " ";
       };
      Textzustand = Textzustand + Text.substring(0, Breitey - Zaehler + 1);
   	}
   	else 
   	{
      Textzustand = Textzustand + Text.substring(Position, Breitey + Position);
   	}
    window.status = Textzustand;
    setTimeout("StatusLauftext()",Geschwindigkeit);
   	}