var t;
var zet=2;
var timer_is_on=0;
function flushingbold(abc,culoarea)
{
    this.abc=abc;
    this.culoarea=culoarea;
    if (abc.length>=zet){
        if (zet==abc.length) {
            document.getElementById(abc[0]).style.color=culoarea;
            zet=2;
            t=setTimeout("flushingbold(abc,culoarea)",abc[1]);
        }
        else {
            document.getElementById(abc[0]).style.color=abc[zet];
            zet=zet+1;
            t=setTimeout("flushingbold(abc,culoarea)",abc[1]);
        }
    }
}
function flushbold()
{
if (!timer_is_on)
  {
  timer_is_on=1;
  var abc= [];
  for (i=0;i<=arguments.length;i++){
    abc.push(arguments[i]);
  }
  var culoarea=document.getElementById(abc[0]).style.color;
  document.getElementById(abc[0]).style.fontWeight='bold';
  flushingbold(abc,culoarea);
  }
}
