<!-- Hide from old browsers
var Text = " +++ NEU !   NEW !   Free mp3-download !    *   Keine  Versandkosten  bei  erster  Bestellung    *     No   fees  of  delivery  for  first  order    *    Free  leadsheet-download  !   |  ORDER now by clicking on the blue logo or cover image !    |   Bestellen Sie jetzt, indem sie auf das blaue Logo oder das CD-Cover klicken !   +++ "; 
  var Geschwindigkeit = 100;   /*** Nach Bedarf erhoehen oder erniedrigen ***/
  var Breite = 90;            /*** Nach Bedarf erhoehen oder erniedrigen ***/
  var TextLaenge = Text.length; /*** Bitte nicht aendern ***/
  var Position = 1 - Breite;   /*** Bitte nicht aendern ***/
 function Lauftext() 
 {
  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);
   }
  document.laufform.aktuell.value = Textzustand;
  setTimeout("Lauftext()",Geschwindigkeit);
 }
function go()
{ self.location.href=aktuell;
}
// Stop hiding from old browsers -->
