# -*-perl-*-
#/*@@
#  @file      grdoc_helppage
#  @date      Sun Apr 21 11:32:13 1996
#  @author    Paul Walker
#  @desc 
# Makes the grdoc help page.
#  @enddesc 
#  @comment
#  <code>$Id: grdoc_helppage,v 1.3 1996/04/21 16:33:12 pwalker Exp $
#  </code>
#  @endcomment
#@@*/


#/*@@
#  @routine    make_helppage
#  @date       Sun Apr 21 11:32:50 1996
#  @author     Paul Walker
#  @desc 
#  Writes the help page.
#  @enddesc 
#@@*/


sub
make_helppage
{
    open (OUT, "> $opt_o/Help.html") || die "helppage $!\n";
    &html_head("Help with grdoc");
    print OUT "<h1 align=center>$opt_c</h1>\n";
    print OUT "<h2 align=center>Help with grdoc</h2>\n";
    &navigation();
    print OUT <<EOM;
<hr>
This document is under constuction.  Soon, it will contain information about
how to navigate in the grdoc system.  Until then, sorry!
<p>
This documentation was created by the grdoc system.  For more information on 
the system, see
<a href="http://jean-luc.ncsa.uiuc.edu/Codes/grdoc/">the grdoc home page</a>.
<hr>
EOM
    &navigation();
    &html_foot("Help with grdoc");
    close OUT;
}

1;
