#!/usr/local/bin/perl
require "/home/todd/toddweb.env";
require "$PAGEHOMEDIR/weblib.lib";
&htmlopen("The Todd Rundgren Connection - Main Page|");
if($ENV{PATH_INFO} eq ""){
do "$PAGEHOMEDIR/local.inc";
print $localinc;
#print <<EOF;
#<center>
#<img src=/~todd/pictures/trbanner.gif>
#</center>
#EOF
}
else{
	$artpath="$PAGEHOMEDIR/articles";
	&getart2("$artpath$ENV{PATH_INFO}");
}
&htmlclose;
