function closePopup(){
  var x = document.getElementById("Layer1");
  if(x != null){
  x.style.zIndex = -1;
  x.style.visibility = "hidden";
  }
}
