Status Bar Flasher

Check out the status bar! You can control the speed of the flashing in this script. You just need to change the speed number. This one is set to 300. This bigger the number the slower it goes.

<SCRIPT>

var yourwords = "YOUR MESSAGE GOES HERE";
var speed = 300;
// the switch that causes the message to appear & disappear
var control = 1;

function flash() {
    if (control == 1) {
          status = yourwords;
          // after the message is displayed reset the switch
          control = 0;
    }
    else {
          status = "";
          // reset the switch to show the message again
          control = 1;
    }
    // how long to you want to wait to call the flash function
    setTimeout("flash()", speed);
}

</SCRIPT>

This causes the flash function to automatically load
<BODY
onLoad="flash()">