
| A form box message slideshow rotates among any number of messages. Each message is associated with a unique URL, and clicking the button will take the surfer to a different URL, depending on when the surfer clicks it. |
| <SCRIPT>
// initialize to -1 because it
immediately gets set to 0 by the slidemessage() // this then brings up message 0 // curmsg is also a Global variable that is used by the Take me there! button at the bottom var curmsg = -1; // create the message array //add more messages as desired // create the links array msgLinks[0] = "http://www.cnn.com"; function slidemessage()
{ // put the new
message into the TextArea // waiting time
is set to 4.5 seconds before you call slidemessage() </SCRIPT> after the document is loaded call the slidemessage()
function <FORM NAME="slideshow"> |