	function highrow(tr, high)
	{
		var tds = tr.getElementsByTagName("td");
		tds[0].style.backgroundColor = (high == true) ? '#A0CEE7' : 'white';
		tds[1].style.backgroundColor = (high == true) ? '#CEE7F7' : 'white';
	}

	function hightable(id, row, high)
	{
		var table = document.getElementById(id);
		if (!table) return "";
		
		var tbodies = table.getElementsByTagName("tbody");
		if (tbodies.length != 1) return "";
		
		var trs = tbodies[0].getElementsByTagName("tr");
		if (!trs) return "";
		if (trs.length <= row || row < 0) return "";
		
		return highrow(trs[row], high);
	}