<!--

 var max=0;
 function textlist()
  {
   max=textlist.arguments.length;
   for (i=0; i<max; i++ )
   this[i]=textlist.arguments[i];
  }

  tl=new textlist
  (
    " Sonderpreise: ",
    " Tour Berlin-München-Stuttgart-Berlin ",
    " Berlin-Dortmund-Köln-Bonn-HH-Berlin ",
    " Berlin-Zürich-Bern-Basel-Berlin",
    " Ob Einfamilienhaus, Einzimmerwohnung, ein Sofa ",
    " wir bewegen alles!! "

);

  var x=0; pos=0; color=0;
  var l=tl[0].length;
 function textticker()
 {
  if (color==0) {document.tickerform.tickerfeld.style.color="#00FFFF"}
  if (color==1) {document.tickerform.tickerfeld.style.color="#00FFFF"}
  if (color==2) {document.tickerform.tickerfeld.style.color="#00FFFF"}
  if (color==3) {document.tickerform.tickerfeld.style.color="#FFFFFF"}
  if (color==4) {document.tickerform.tickerfeld.style.color="#FFFFFF"}



  document.tickerform.tickerfeld.value=tl[x].substring(0,pos);
        if(pos++==l)
        {
          pos=0;
          setTimeout("textticker()",2500); // Pause nach jeder Zeile
          x++;
          if(x==max)
          x=0; color++;
          l=tl[x].length;
          if (color==5) {color=0} // Bitte an die Anzahl der Farben anpassen(+1)!
        } else
          setTimeout("textticker()",10); // Pause nach der letzten Zeile
 }

 document.write('<center><FORM NAME="tickerform">');
 document.write('<INPUT TYPE=TEXT NAME="tickerfeld" ');
 document.write('style="width:400px; ');                // Ticker Größe
 document.write('background-color:#003399; ');          // Hintergrundfarbe
 document.write('font-family:Times New Roman; ');       // Schriftsatz
 document.write('font-size:15; ');                   // Schriftgröße
 document.write('font-weight:bold; ');                // Schrift Gewicht (bold, lighter)
 document.write('text-align:center; ');                 // Text zentrieren (left, right)
 document.write('border:0">');                          // Rahmen aus
 document.write("</FORM></center>");
 textticker();
// -->