function show(id){
  document.getElementById(id).style.display="block";
}

function hide(id){
  document.getElementById(id).style.display="none";
}

function select(id){
  document.getElementById(id).style.background="#3FC";
}

function deselect(id){
  document.getElementById(id).style.background="#CF3";
}