function show_form(id)
{
   if( document.getElementById(id).style.visibility == 'hidden' )
   {
      document.getElementById(id).style.visibility = 'visible';
   }
   return false;
}
function close_form(id)
{
   document.getElementById(id).style.visibility = 'hidden';
}