// JavaScript Document
<!--
function doBlink() {
  this.style.visibility = this.style.visibility=="" ? "hidden" : ""
}

function Init() {
  if (!speed) speed=5000
  setInterval(uniqueID+".doBlink()",speed)
}
// -->