﻿function ChangeEnterButton(table, mouseOver)
{
    if (mouseOver)
    {
      table.style.backgroundImage = "url(../Images/Buttons/EnterButton_Green.jpg)";
    
      table.style.cursor = 'hand';
    }
    else
    {
      table.style.backgroundImage = "url(../Images/Buttons/EnterButton_Blue.jpg)";
    }
}

function DoNav(theUrl)
{
    window.open(theUrl, '_self')
}
