function showColour(id) {
  document.getElementById(id).style.visibilty = "visible";
  document.getElementById(id).style.display = "block";
}

function hideColour(id) {
  document.getElementById(id).style.visibilty = "hidden";
  document.getElementById(id).style.display = "none";
}