function RowHighlight(theRow, theRowStatus) {
  if(theRowStatus == 2) {
    theRow.className = "nav-hover-background";
  } else {
    theRow.className = "nav-normal-background";
  }
}
