function show_div(id)
{
  document.getElementById(id).style.visibility = 'visible';
}

function hide_div(id)
{
  document.getElementById(id).style.visibility = 'hidden';
}
