function highlightRow(obj, clr) {
   rowObj = obj.parentElement;
   for (i = 0; i < rowObj.childNodes.length; i++) {
      rowObj.childNodes[i].style.backgroundColor = clr;
   }
}
