By viewing the source code of a page you can often (but not always) find how things are done. In this case it's;
Code:
<script language="JavaScript">
<!--Start Scrolling Statusbar Text
var scrollCounter = 0;
var scrollText = "ENTER YOUR TEXT HERE";
scrollText = "
" + scrollText;
var i = 0;
while (i ++ < 100)
function Scroller()
{
window.status = scrollText.substring(scrollCounter++,
scrollText.length);
if (scrollCounter == scrollText.length)
scrollCounter = 0;
setTimeout("Scroller()", 100);
}
Scroller()
//End -->
</script>
--------------------
TFC
'Going to trial with a lawyer who considers your whole life-style a Crime in Progress is not a happy prospect.' - Hunter S Thompson (1937-2005)