#!/usr/local/bin/perl5.003
# -*-perl-*-
# $Id: $
#

require 5.003;

use SelfLoader;

print "Enter a file prefix: ";
my $file = <STDIN>; chomp $file;

print "Enter the title: ";
my $title = <STDIN>; chomp $title;

$filename = ">$file.html";

open (FILE, $filename) || die ("open $filename failed");
print FILE <<"END";
<html>
<head>
<title>$title</title>
</head>
<body bgcolor="#FFFFFF">
<p>
<img src=./$file-f.gif>
<img src=./$file-b.gif>
<p>
<a href=../cereal-chart.html border=0><img src=../../lobot.gif border=0>
<br>
Return to Cereal Chart</a>
<p>
<i>lopez\@halcyon.com</i>
</html>
END
