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

