function closeWindow(id) {
  document.getElementById(id).style.display = 'none';
}
function openWindow(id) {
  document.getElementById(id).style.display = 'block';
}
