    <!-- Hide the script from old browsers --
    var timerID = null;
    var timerRunning = false;
    var id,pause=0,position=0;
    function ticker() {
      var i,k,msg=<?php echo "dfdfefdf dfd dsfsfg fs g"; ?>;
      k=(80/msg.length)+1;
      for(i=0;i<=k;i++) msg+=" "+msg;
      document.form2.ticker.value=
                    msg.substring(position,position+75);
      if(position++==500) position=0;
      id=setTimeout("ticker()",1000/4); 
    }
    function action() {
      if(!pause) {
        clearTimeout(id);
        pause=1; 
      }
      else {
        ticker();
        pause=0; 
      }
    }
    // --end hiding here -->
