function flash(id, kolor, czas, kolor2, czas2, kolor3, czas3)

{

	document.getElementById(id).style.color = kolor;

	setTimeout('flash("' + id + '","' + kolor2 + '",' + czas2 + ',"' + kolor3 + '",' + czas3 + ',"'+ kolor + '",' + czas + ')', czas);

}
