
function Remove(d) {
  document.getElementById(d).style.display = "none";
}
function Insert(d) {
  document.getElementById(d).style.display = "";
}
