function ChangeColor(tableRow, rowColor, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = rowColor;
	  tableRow.style.cursor="hand";
    }
    else
    {
      tableRow.style.backgroundColor = '';
	  tableRow.style.cursor="pointer";
    }
  }