var lastColorUsed;
function prettyDG_changeBackColor(row, highlight)
{
  if (highlight)
  {
    lastColorUsed = row.style.backgroundColor;
    row.style.backgroundColor = '#FFE4BA';
  }
  else
    row.style.backgroundColor = lastColorUsed;
}