ScrollSpeed = 250;  // milliseconds between scrolls
ScrollChars = 4;    // chars scrolled per time period

function SetupTicker() {
  // add space to the left of the message
  msg = "    Let Rent-A-Page Increase your bottom line...                        Active Server Pages, (ASP);   XML, XSL, Data Binding;      SQL Server 7.0 Data Transformation Services (DTS);   ActiveX,  DHTML,  Total website Design, Hosting & ServerSetups.         Modular design so you pay only for the services you choose.         Photo Galleries,  Streaming video,   LIVE chat,      Interactive,   Virtual Reality,   CGI,  Server-secure, Tunneling,  CyberCash,  Revenue enhancements & more...                                         ";
   RunTicker();}

function RunTicker() {
  window.setTimeout('RunTicker()',ScrollSpeed);
  window.status = msg;
  msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);}
SetupTicker();