function change_display(id1,id2){  
  document.getElementById(id1).style.display = "";
  document.getElementById(id2).style.display = "none";
}

