  Text=new Array(13);
  Text[1] = "+++  Ehlertronic bietet Ihnen Service,  Dienstleistung  und  Support !  +++";
  Text[2] = "+++  PC-Technik, Telekommunikation und Mobilfunk sind unsere Kompetenzen. +++"; 
  Text[3] = "+++  Probleme mit Ihrem PC ?  =>  Ehlertronic !  +++";
  Text[4] = "+++  Probleme mit Ihrem Drucker ?  =>  Ehlertronic !  +++";
  Text[5] = "+++  Probleme mit Ihrem Netzwerk ?  =>  Ehlertronic !  +++";
  Text[6] = "+++  Sie suchen eine Datensicherungs Strategie ?  =>  Ehlertronic !  +++";
  Text[7] = "+++  Probleme mit Ihrer Telefon-Anlage ?  =>  Ehlertronic !  +++";
  Text[8] = "+++  Probleme mit Ihrem Telefon ?  =>  Ehlertronic !  +++";
  Text[9] = "+++  Probleme mit Ihrem WLan ?  =>  Ehlertronic !  +++";
  Text[10] = "+++  Probleme mit Ihrem Server ?  =>  Ehlertronic !  +++";
  Text[11] = "+++  Probleme mit Ihrem Internet Zugang ?  =>  Ehlertronic !  +++";
  Text[12] = "+++  Sie suchen einen Partner fuer Ihren Internet Auftritt ?  =>  Ehlertronic !  +++";
  Text[13] = "+++  Kontakten Sie uns, wir helfen Ihnen weiter.......";
  var Geschwindigkeit = 50;   
  var Breite=140;
  var Position = 0 - Breite;   
  var id;
  var a=1 + 12*(Math.random());
     a = Math.round(a);
  var Textzustand=" ";
 function StatusLauftext()   
  {
     clearInterval(id); 
     Position++;
     var Textzustand=" ";
        if (Position > 40) 
         {
           Position = 0 - Breite;
             a++;
              if (a>13)
               {
                 a=1;
               }
         }

  if (Position < 1) 
   {
    for (var Zaehler=1; Zaehler <= Math.abs(Position); Zaehler++) 
    {
        Textzustand = Textzustand + " ";
    };
    Textzustand = Textzustand + Text[a].substring(0, Breite - Zaehler );
     window.status = Textzustand;
   }
 id=setInterval("StatusLauftext()",Geschwindigkeit); 
 }
