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