#!/usr/bin/perl -w -T
 use strict;
 
 # load up necessary perl function modules to be able to call from Perl-SSI
 # files.  These objects are reloaded upon server restart (SIGHUP or SIGUSR1)
 # if PerlFreshRestart is "On" in httpd.conf (as of mod_perl 1.03).
 
 # only library-type routines should go in this directory.
 
 use lib "/home/httpd/lib/perl/";
 
 # make sure we are in a sane environment.
 $ENV{GATEWAY_INTERFACE} =~ /^CGI-Perl/ or die "GATEWAY_INTERFACE not Perl!";
 
 use Apache::Registry ();       # for things in the "/programs" URL
 
 # pull in things we will use in most requests so it is read and compiled
 # exactly once
 use CGI (); 
CGI->compile(':all');
 use CGI::Carp ();
# use DBI ();
# use DBD::mysql ();
#use Pg ();
#use PT::CategoryKey;
#use Email::Valid ();
 1;
