/***********************/ /* Script by Adam27 */ /* skrypty.freehost.pl */ /***********************/ function flash(id,colors,times,index) { var col=colors.split(";"); var time=times.split(";"); if (col.length<1||time.length<1) return; if (!index||index<0) index=0; document.getElementById(id).style.color=col[index]; var i=(index==Math.min(col.length,time.length)-1?0:index+1); setTimeout('flash("'+id+'","'+colors+'","'+times+'",'+i+')', time[index]); }