function hiliteRow(checkbox, rowId)
{
	if (document.getElementById)
	{
		var tr = eval("document.getElementById(\"" + rowId + "\")");
	} // if
	else
	{
		return;
	} // else

	if (tr.style)
	{
		if (checkbox.checked)
		{
			tr.style.backgroundColor = "rgb(232, 232, 232)";
		} // if
		else
		{
			tr.style.backgroundColor = "transparent";
		} // else
	} // if
} // hiliteRow()
