
function flash(id, color1, color2, time)
{
	
	document.getElementById(id).style.color = color2;
	//alert('deeper');
	
	setTimeout('flash("' + id + '","' + color2 + '","' + color1 + '",' + time + ')', time);
	
}
