
    
    var timerID = null;
    var timerRunning = false;
    var id,pause=0,position=0;
    function ticker() {
      var i,k,msg=" . . . NEWS . . . NEWS . . . NEWS. . . Book Monkiejamm for an evening of unrivalled entertainment!";
      k=(100/msg.length)+1;
      for(i=0;i<=k;i++) msg+=" "+msg;
      document.form2.ticker.value=
                    msg.substring(position,position+200);
      if(position++==300) position=0;
      id=setTimeout("ticker()",1000/8); <!--- To set up the speed you need to adjust the denominator. The bigger the number the faster it goes. you see how fast it goes now? ---> 
    }
    function action() {
      if(!pause) {
        clearTimeout(id);
        pause=1; 
      }
      else {
        ticker();
        pause=0; 
      }
    }