function BGover(curTD, colortouse) {
  document.getElementById(curTD).style.backgroundColor = colortouse;
  if (document.getElementById(curTD).style.cursor != "wait") {
      document.getElementById(curTD).style.cursor = "Hand";
  }
}
function BGovermtxt(curTD, colortouse, curTD2, colortouse2) {
  document.getElementById(curTD).style.backgroundColor = colortouse;
  document.getElementById(curTD2).style.Color = colortouse2;
  if (document.getElementById(curTD).style.cursor != "wait") {
      document.getElementById(curTD).style.cursor = "Hand";
  }
  if (document.getElementById(curTD2).style.cursor != "wait") {
      document.getElementById(curTD2).style.cursor = "Hand";
  }
}