  var scrollCounter = 0;
    var scrollText    = "Compatible Computers Inc., your single source of all computer needs! For more info. Call : (604) 322-0322";
    var scrollDelay   = 70;
    var i = 0;
	
    while (i ++ < 140)
        scrollText = " " + scrollText;

    function Scroller()
    {
        window.status = scrollText.substring(scrollCounter++,
          scrollText.length);
        if (scrollCounter == scrollText.length)
            scrollCounter = 0;
        setTimeout("Scroller()", scrollDelay);
    }

    Scroller();