
Some pages using this javascript help function.

 <script type="text/javascript">
     function help(param)  {  param.style.display=(param.style.display=="none")?"":"none";  }
 </script>
 <a href="javascript:help(document.getElementById('help1'))">help</a>
 <div class="dottedBorders" id="help1" width="300px" style="display:none">
                     <p>some help text 1</p>
 </div>
 <a href="javascript:help(document.getElementById('help2'))">help</a>
 <div class="dottedBorders" id="help2" style="display:none">
                 <p>some help text 2</p>
 </div>
