Status Bar Flasher

Check out the status bar! You can display 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;
var displayMsg = true;

function flash() {
    if (displayMsg) {
          status = yourwords;
          displayMsg = false;
    }
    else {
          status = "";
          displayMsg = true;
    }

    setTimeout("flash()", speed);
}

</SCRIPT>

<BODY onLoad="flash()">