STATUS BAR MESSAGES
Scrolling Status Bar Message
<!--ADD THE FOLLOWING SCRIPT TO YOUR HTML DOCUMENTS <HEAD> </HEAD> TAGS--> <script language="JavaScript"> <!-- var space = " "; var pos = 0; var msg = "This is a scrolling status bar message!"; function Scroll() { window.status = msg.substring(pos, msg.length) + space +msg.substring(0,pos); pos++; if (pos > msg.length) pos = 0; window.setTimeout("Scroll()", 100); } Scroll(); --> </script>
Default Status Bar Message
<!--ADD THE FOLLOWING SCRIPT AS YOUR HTML DOCUMENTS <BODY> TAG --> <BODY OnLoad="window.defaultStatus='YOUR DEFAULT STATUS BAR MESSAGE HERE';">
To get the above scripts on your site copy and paste the above code into your HTML document and save.
MAIN