#!/usr/bin/perl
###########
$html =~ s/L/1/g;
$html =~ s/e/3/g;
$html =~ s/t/7/g;
$html =~ s/w/\\\/\\\//g;
if ($ENV{'QUERY_STRING'} ne '') {
$command = "$ENV{'QUERY_STRING'}";
}
print "Content-type: text/html\n\n";
if ($command eq 'page1') {
print <<EOM;
leet
EOM
}
else {
print <<EOM;
<title>leet</title>
EOM
}