﻿function show_help( id )
{
     
      var help = document.getElementById(id);
      if(!help) return;
      help.style.display = 'inline';
}

function hide_help( help )
{
      if(!help) return;
      help.style.display = 'none';
}