Bouncing Status Bar Message

This is just one of many to choose from. You'll want to place this code after your head tag.
The script was written By Protoplasm.

<Script LANGUAGE="JavaScript"><BR><!-- Hide this from older browsers<BR>// This script was written by Protoplasm<BR>// http://www.geocities.com/ResearchTriangle/4279 <P>var Message = "'This is the line you edit'";<BR>var Leftspace = " ";<BR>var Rightspace = " ";<BR>var message1 = Leftspace + Message + Rightspace;<BR>var dir = "left";<BR>var speed = 80; <P>function bounce(){ <P>if (dir == "left"){ <P>var message2 = message1.substring(2,message1.length) + " ";<BR>window.status = message2;<BR>setTimeout("bounce()", speed);<BR>message1 = message2;<BR>if (message1.substring(0,1) == "'") dir="right";<BR>} <P>else{ <P>message2 = " " + message1.substring(0,message1.length-2);<BR>window.status = message2;<BR>setTimeout("bounce()", speed);<BR>message1 = message2;<BR>if (message1.substring(message1.length-1,message1.length) == "'") dir="left";<BR>} <P>} <P>bounce(); <P>// end hide --><BR></Script>