
//Highlights the item when the user hovers over it
function ChangeColor(tableRow, highLight)
{
if (highLight)
{
  tableRow.style.backgroundColor = '#7DC18F';
}
else
{
  tableRow.style.backgroundColor = 'white';
}
}

//Allows the user to click on the entire table cell as a link
function DoNav(theUrl)
{
    win2 = window.open("",'content', 'left=150,top=60,width=1000,height=600,resizable=1,scrollbars=1,menubar=1,location=1');
    win2.document.location.href = theUrl;
}

/*Link with No Popout
function DoNav(theUrl)
{
document.location.href = theUrl;
}*/
