function showid(show) {
  document.getElementById(show).style.display = "inline";				 
}

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