function show(id,show) {
  document.getElementById(id).style.display = (show ? 'block' : 'none');
}

