# Set up a standard HTML footer section.  At this point, it simply
# ends the BODY and HTML sections.
 
sub HTML_Footer
{
    print "\n", "</BODY>", "\n";
    print "</HTML>", "\n";
 
}                    # End HTML_Footer

