	var Text = " ***     Willkommen auf der Homepage von HELIWEB ! -   Auf den nachfolgenden Seiten finden Sie interessantes zum faszinierenden Thema Helicopter.  -  Das HELIWEB-TEAM wünscht Ihnen viel Spass bei Ihrem Rundflug.   ***     Bienvenue sur la homepage de HELIWEB !  -   C'est avec plaisir que nous vous invitons à venir voler quelques instants avec nous, dans le monde fascinant des giravions. Sur ce site, d'intéressantes photos, et bien plus encore sur le thème des hélicoptères, vous attendent.   -   Le TEAM-HELIWEB vous souhaite beaucoup de plaisier !   ***     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 !  -  Concedetevi un pò di tempo e volate con noi attraverso il mondo affascinante delle pale girevoli. Sulle pagine seguenti troverete delle foto interessanti e quant'altro sull'argomento degli elicotteri.   ***  ";  
	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);
   	}
