function GetObject(obj_id)
{
	if(document.all)
		return document.all[obj_id];
	else if(document.getElementById)
		return document.getElementById(obj_id);
	return null;
}

function blink(obj_id, time)
{
	var ob = GetObject(obj_id);
	if(!ob)
	{
		//if(console)
		//	console.error("Object with id = \"" + obj_id + "\" not found.");
		return;
	}
	if(ob.style.color == "")
		ob.style.color = "#f28637";
	else
		ob.style.color = "";
	newTimerTick("blink(\"" + obj_id + "\"," + time + ")", time);
}

function newTimerTick(str,time)
{
	setTimeout(str,time);
}