//Lauftext

  var Text = "===>   S T E U E R N  -  T A X E S  -  I M P Ô T S   •   F I R M A G R Ü N D U N G   •   R E V I S I O N E N  -  A U D I T  S E R V I C E S   <==="; 
  var Geschwindigkeit = 130;   		/*** Nach Bedarf erhoehen oder erniedrigen ***/
  var Breite = 100;            		/*** Nach Bedarf erhoehen oder erniedrigen ***/
  var TextLaenge = Text.length; 	/*** Bitte nicht aendern ***/
  var Position = 1 - Breite;   		/*** Bitte nicht aendern ***/
  
 function StatusLauftext()    		/*** ab hier bitte nichts aendern ***/
 {
  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("StatusLauftext()",Geschwindigkeit);
 }
