function hideDiv(image) {
  // Set the object 'image's visibility to hidden
  x = document.getElementById(image);
  x.style.display = "none";
}
