function Hide(Cell){ document.getElementById(Cell).style.display = "none" }
function Show(Cell){ document.getElementById(Cell).style.display = "" }
function ChangeCell(Cell){ document.getElementById(Cell).style.background="navy";  }
function ChangeBack(Cell){ document.getElementById(Cell).style.background="none" }