      var scrollCounter = 0;
      var scrollText    = "Welcome to www.ProDogWalker.com Formerly the Professional Dog Walkers Association International founded by Dianne Eibner in 1997. We have now merged with The International Association of Canine Professionals. For membership information contact www.dogpro.org";
      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();

