function ChangeColor(tableData, highLight)
{
    if (highLight)
    {
      tableData.style.backgroundColor = '#4CAFAF';
    }
    else
    {
      tableData.style.backgroundColor = '#41A1A1';
    }
}

function ChangeColor3(tableData, highLight)
{
    if (highLight)
    {
      tableData.style.backgroundColor = '#F1F8FF';
    }
    else
    {
      tableData.style.backgroundColor = '#DCEEFF';
    }
}

function DoNav(theUrl)
{
    window.parent.document.location.href = theUrl;
}

