function blink(id,interval,bc) {
  if (document.all) {
    c=document.all(id).style;
    if (!bc) bc=c.color;
    c.color=c.color==c.backgroundColor?bc:c.backgroundColor;
    setTimeout('blink("'+id+'",'+interval+',"'+bc+'")',interval);
  }
}