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

 tl=new textlist
 (
   "{ ProHostGold - Your No.1 Web Host for domain names and web packages.",
   "{ Domain names from just £2.89 Per year",
   "{ Top Domain Names... ",
   "{ Hosting packages from just £5.00 per month",
   "{ Become a ProHostGold affiliate and earn commission on every sale",
   "{ 24/7 Hotline: 07858396855"
 );
 var x=0; pos=0;
 var l=tl[0].length;
function textticker()
 {
        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;
          l=tl[x].length;
        } 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:410px; ');                // Ticker GrÃ¶ÃŸe
document.write('background-color:#FFFFFF; ');          // Hintergrundfarbe
document.write('font-family:Times New Roman; ');       // Schriftsatz
document.write('font-size:10 pt; ');                   // SchriftgrÃ¶ÃŸe
document.write('font-weight:normal; ');                // Schrift Gewicht (bold, lighter)
document.write('color:#666666; ');                     // Schriftfarbe
document.write('text-align:center; ');                 // Text zentrieren (left, right)
document.write('border:0" />');                          // Rahmen aus
document.write("</form></center>");
textticker();