#!/usr/local/bin/perl -w

print "Content-type:text/html\n\n";





open(INF, "lab45.dat");
	$title = <INF>;


print "<html><head><title>";
print $title;
print "</title></head><body background=background.gif>\n";
print "<h1><center>";
print $title;
print "</center></h1><h3>";
$line = <INF>;
while ($line ne "eoo\n") {
	print $line;
	if (!($line = <INF>)) { $line = "eoo\n";}
}
close(INF);
print "</h3></center></h1>";
print "</body></html>";