
The message below will stop automatically ...
| <SCRIPT>
function autostop(seed)
{ if (seed > 0
&& seed <= 100) { //
making sure that the seed is "within the range" out += msg; // number of spaces from above + msg, ie, if seed = 5 then " " + msg seed--; // decrement the seed count (100, 99, 98, ..., 2, 1) status = out; // output the results to the status bar
setTimeout("autostop("
+ seed + ")", 50); </SCRIPT> <BODY onLoad="autostop(100);"> |