function migacz(id, kolor1, czas1, kolor2, czas2)
{
  if (document.getElementById)
  {
    document.getElementById(id).style.color = kolor1;
    setTimeout('migacz("' +  id + '","' + kolor2 + '",' + czas2 + ',"' + kolor1 + '",' + czas1 + ')', czas1);
  }
  else if (document.all)
  {
    document.all[id].style.color = kolor1;
    setTimeout('migacz("' +  id + '","' + kolor2 + '",' + czas2 + ',"' + kolor1 + '",' + czas1 + ')', czas1);
  }
}
