use strict;
use vars qw($r);
###### Set some Constants
# Template Path
$ENV{'HTML_TEMPLATE_ROOT'} =
xxx";
# Our Content Template
my $content = "Navigation.tmpl";
######################################################################
#
Main
# Our Mod_Perl Content Handler
sub handler {
$r = shift;
&cgi_nav();
# As this is being called from a include, set a header and print it
out
$r->send_http_header;
print
$content->output;
# Return our header as we are
done!!!
return Apache::OK;
} # End of
Sub
######################################################################
sub
cgi_nav {
my ($self,$r) = @_;
# do what we want to do and return the content template to the requesting MP2 script
return $content;
}