<!--
// 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;
}

// -->
