#!/usr/bin/perl -wT

print "Content-type: text/html\n\n";

#!/usr/bin/perl -wT

use strict;

my $http_cookie = $ENV{'HTTP_COOKIE'};
my $script_name = $ENV{'SCRIPT_NAME'};
my $birth = "298329300";
my $bgcolor = "#0000C0";
my $file = "templates/mst3k.html";
my $buf;
my @paths;
my $i;
my $random;
my $misties;
my @comments;
my $age = int((time() - $birth)/315576)/100;

if($http_cookie =~ "mst3k=1")
{
  $buf = "";
  open(FH, $file);
  read(FH, $misties, 8192);
  close(FH);
  @paths = split (/\//,$script_name);
  $file = 'comments/' . pop(@paths) . '.txt';
  open(FH, $file);
  read(FH, $buf, 1024);
  @comments = split(/\n/,$buf);
  for($i = 0;$i < 3;$i++)
  {
    $random = int(rand(@comments));
    $random = splice(@comments,$random,1);
    $misties =~ s/TEXT/$random/;
  }
  $misties =~ s/FILENAME/$file/;
}

print <<END_OF_TOP;
<html>
<head>
<title>
About Me
</title>
</head>
<style type="text/css">
        body { font-family : "courier";
        background : $bgcolor;
        color : white; }
        A:link, A:visited { text-decoration : none }
        A:visited { color : #FFFFFF }
        A:link { color : #FFFFFF }
        A:hover { color : #FFFF00;
	background : #FF0000 ;}

</style>
<TABLE bgcolor = "#FFFFFF" align = "center" cellspacing = "2" cellpadding = "5" width = "100%" border = "0">
 <TR>
  <TD bgcolor = $bgcolor height = "100" width = "100%" align = "center" colspan = "3">
   Mike
  </TD>
 </TR>
 <tr>
  <TD bgcolor = $bgcolor height = "2" width = "100%" colspan = "3">
  </td>
 </tr>
 <tr>
  <TD bgcolor = $bgcolor width = "20%" rowspan = "2" valign = "top">
   <br>
   Age<br>
   Sex<br>
   Height<br>
   Weight<br>
   Alignment<br>
   Occupation<br>
   Major<br>
   Nerd<br>
   AIM<br>
   Sports<br>
   Hobbies<br>
  </TD> 
  <TD bgcolor = $bgcolor width = "50%" rowspan = "2" valign = "top">
   <br>
   $age<br>
   Male<br>
   6'3"<br>
   175<br>
   <a href = "http://www.ugcs.caltech.edu/~whuang/align.html">Chaotic Neutral</a><br>
   <a href = "http://www.santacruzgames.com">programmer</a><br>
   Computer Engineering<br>
   <a href = "http://www.armory.com./tests/nerd500.html">47.2% Nerd Corrupt</a><br>
   <a href="aim:goim?screenname=ToperRogue">Toper Rogue</a><br>
   Racquetball, Skiing, Backpacking, Surfing<br>
   Mischief, Video & Board Games, Movie Nights, Baking<br> 
   <br>
  </td>

  <TD bgcolor = $bgcolor height = "50" width = "30%" align = "center">
   Reading
  </td>
 </tr>
 <tr>
  <td bgcolor = $bgcolor valign = "top">
   War and Peace<br>
   Quicksilver<br>
   On Blue's Waters<br>
   The Wizard<br>
   Animal Farm<br>
   The BFG<br>
  </td>
 </tr>
</table>
&nbsp F10 to Save with Changes ESC exits without saving<br>
$misties
</body>
</html>
END_OF_TOP
