Scrolling Banner in Status Bar

The message below will stop automatically ...

<SCRIPT>

function autostop(seed) {
     var msg = "You can easily change this message to suit your needs ... ";
     var out = " ";

     if (seed > 0 && seed <= 100) {
          for (i = 0; i < seed; i++) out += " ";

          out += msg;

          seed--;

          status = out;

          setTimeout("autostop(" + seed + ")", 50);
     }
}

</SCRIPT>

<BODY onLoad="autostop(100);">