function showTuningInfo(id) {
  document.getElementById("tuninginfo"+id).style.display="inline";
  document.getElementById("show"+id).style.display="none";
  document.getElementById("hide"+id).style.display="inline";
}

function hideTuningInfo(id) {
  document.getElementById("tuninginfo"+id).style.display="none";
  document.getElementById("hide"+id).style.display="none";
  document.getElementById("show"+id).style.display="inline";
}
