function show(div) {
  with(document.getElementById(div).style){
      display="block";
  }
}

function hide(div) {
  with(document.getElementById(div).style){
      display="none";
  }
}



