ScrollSpeed = 200
ScrollChars = 1
function ScrollMarquee() 
  {
  window.setTimeout('ScrollMarquee()',ScrollSpeed);
  var d = document.getElementById("test");
  var t = d.value;
  d.value = t.substring(ScrollChars) + t.substring(0,ScrollChars);
  //document.text.value = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
  }
  ScrollMarquee()