//Hilite

var oldcolor;

function hl_cb(id, color)
{
	if(document.all)
	{
		document.all[id].style.backgroundColor = color;
		//document.all[id].style.border = "1px solid black";
	}else{
		if(document.getElementById)
		{
			document.getElementById(id).style.backgroundColor=color;
			//document.getElementById(id).style.border = "1px solid black";
		}
	}
}

function hl_co(id, color)
{
	if(document.all)
	{
		document.all[id].style.backgroundColor=color;
		//document.all[id].style.border = "1px solid black";
	}else{
		if(document.getElementById)
		{
			document.getElementById(id).style.backgroundColor=color;
			//document.getElementById(id).style.border = "1px solid black";
		}
	}
}

