OK Sawsie,
Here is the code you'll need. Just substitute the text thats in BOLD for the text you want in your message.
<SCRIPT language=JavaScript>
<!-- Start of scroller script
var scrollCounter = 0;
var scrollText = "YOUR TEXT HERE";
var scrollDelay = 50;
var i = 0;
while (i ++ < 140)
scrollText = " " + scrollText;
function Scroller()
{
window.status = scrollText.substring(scrollCounter++,
scrollText.length);
if (scrollCounter == scrollText.length)
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);
}
Scroller();
// End of scroller script -->
</SCRIPT>
Give that a try
kwunder