function highlite(theRow, theRowColor) {
  if (theRowColor == 'H')
  {
  theRowColor = '#FBF481' //****Highlight Color****//
  }
  else
  if (theRowColor == 'F')
  {
  theRowColor = '#EEF5F8' //****Female Color****//
  }
  else
  if (theRowColor == 'M')
  {
  theRowColor = '#B7D7E6' //****Male Color****//
  }
  else
  if (theRowColor == 'S')
  {
  theRowColor = '#92D28E' //****Highlight My Data Color****//
  }
  else
  if (theRowColor == 'MS')
  {
  theRowColor = '#A1A3CF' //****Click on Male Color****//
  }
  else
  if (theRowColor == 'FS')
  {
  theRowColor = '#D1A2AB' //****Click on Female Color****//
  }
  if (theRowColor == '' || typeof(theRow.style) == 'undefined') {
    return false;
  }
  if (typeof(document.getElementsByTagName) != 'undefined') {
    var theCells = theRow.getElementsByTagName('td');
  }
  else if (typeof(theRow.cells) != 'undefined') {
    var theCells = theRow.cells;
  }
  else {
    return false;
  }
  var rowCellsCnt  = theCells.length;
  for (var c = 0; c < rowCellsCnt; c++) {
    theCells[c].style.backgroundColor = theRowColor;
  }
  return true;
} // end of the 'highlite()' function

