<!--
      var iTimer;
      
      function MoveLeft() {
       clearInterval(iTimer);
       iTimer = setInterval("StartScrolling('left')", 5);
      }
      
      function MoveLeftFast() {
       clearInterval(iTimer);
       iTimer = setInterval("StartScrollingFast('left')", 5);
      }
      
      function MoveRight() { 
       clearInterval(iTimer);
       iTimer = setInterval("StartScrolling('right')", 5);
      }
      
      function MoveRightFast() { 
       clearInterval(iTimer);
       iTimer = setInterval("StartScrollingFast('right')", 5);
      }
      
      function StopScrolling() {
        clearInterval(iTimer);
      }   
-->