function ChangeColor(tableRow, highLight)
{
	if (highLight)
	{
	  tableRow.style.backgroundColor = 'white';
	}
	else
	{
	  tableRow.style.backgroundColor = 'red';
	}
}

function ChangeColorNav(tableRow, highLight) {
   if (highLight) {
	   tableRow.style.backgroundColor = 'white';
   }
   else {
	   tableRow.style.backgroundColor = 'red';
   }
}
         
function DoNav(theUrl) {
	document.location.href = theUrl;
}
