<script language="Javascript1.2">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var bloffon = 0;
var activated = false;
var speed = 1000;
var bltxt;
function BlinkOn() {
window.status = (bloffon%2 == 0) ? bltxt : " ";
bloffon++;
if (!activated) {
mybl = setInterval('BlinkOn()',speed);
activated = true;
}
}
function BlinkOut() {
window.status = " ";
clearInterval(mybl);
bloffon=0;
activated = false;
}
// -->
</script>
<a href="" onMouseOver="bltxt='This is the Blinking Mouseover';BlinkOn();return true;"
onMouseOut="BlinkOut()">Put your mouse over here</a> and check out the statusbar.