By using JavaScript this should be cross browser compatible. Note, I have not had time to test this so if someone can report back if it works...
Code:
<blink>{param}<blink>
<script type="text/javascript">
<!--
function doBlink() {
var blink = document.all.tags("BLINK")
for (var i=0; i<blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""
}
function startBlink() {
if (document.all)
setInterval("doBlink()",1000)
}
window.onload = startBlink;
// -->
</script>
Edit: Seems I was posting as someone else was and both found the same code but from different resources. Checked working on IE7. Does not work on WebTV.