function ChangeColor(tableRow, highLight)
{
	if (highLight)
	{
		tableRow.style.backgroundColor = '#EEE';
		tableRow.style.cursor = 'pointer';
	} else
	{
		tableRow.style.backgroundColor = '#FFF';
		tableRow.style.cursor = 'default';
	}
}

function DoNav(theUrl)
{
	document.location.href = theUrl;
}