Apparently the BLINK tag doesn't actually work in some modern browsers, so I had to reimplement it in JavaScript. If you'd like to use it on your own site, here's the code:
var blinkOn = 1;
window.setInterval(function() {
var blinks = document.getElementsByTagName("blink");
for (var i = 0; i < blinks.length; i++)
blinks[i].style.visibility = blinkOn ? "visible" : "hidden";
blinkOn ^= 1;
}, 500);
Just a small note - you should not explicitly set the visibility to "visible", set it to the empty string "" instead. This way you don't overwrite the default property if it was something else.
That's actually way slower because you're doing a comparison within an iteration. That's putting an if statement inside a loop while the result is the same for every iteration.