	function highlightRow(id)
	{
			if (document.getElementById)
				document.getElementById('row' + id).style.backgroundColor = "#A69402";//"#cee19c";
	}
	
	function unlightRow(id,color)
	{
		// removes the highlighting of the row  with the Id that is sent in
		if (document.getElementById)
		{
			document.getElementById('row' + id).style.backgroundColor = color;
		}
	}


