function MM_openBrWindow(TheURL, WinName, Features)
{
  window.open(TheURL, WinName, Features);
}

function confirm_Delete(UseURL)
{ 
  if (confirm("Are you sure you want to delete?"))
  {
    window.location = UseURL;
  } 
}

function PageRedirect(Page)
{
  window.location = Page;
}


function ChangeColor(tableRow, highlight)
{
  if(highlight)
  {
    tableRow.style.backgroundColor ='#00FF00'; // was '#dcfac9'
  }
  else
  {
    tableRow.style.backgroundColor = 'white';
  }
}


function mouse_event(obj, newClass)
{
  obj.className = newClass;
}
