#!/usr/bin/perl -w

use strict;

&print_header;

print qq|
<div class="padded">
<p>
<b><h2>ShopJesusFish Launch Contest</b></h2>
</p>

<p>
<b>Taylor  - You are our FIRST EVER contest winner!</b>
</p>

<p>
	<img src="images/taylor2.jpg" width="394" height="217" alt="The two looks of Taylor"><br>
The two looks of Taylor
</p>

<p>
Taylor from Vancouver, Washington won \$100.00 in free ShopJesusFish stuff!
</p>

<p>
What did Taylor have to say when we emailed him that he won?
<blockquote>
	"Wow thats awesome!"
</blockquote>
...When we asked him what FREE STUFF he wanted?
<blockquote>
"I'm gonna go with 5 of the metal Bibles... I've always wanted one! And I
know some of my friends will like them :)<br>
I'll take 2 of the Cross Bible, and 1 of each of the other metal Bibles..."
</blockquote>

<p>
<a href="metal_bibles_cat.shtml"><img src="/covers/cross_bible_sml.jpg" width="120" height="148" alt="Cross" border="0">&nbsp;<img src="/covers/one_way_bible_sml.jpg" width="120" height="155" alt="One Way" border="0">&nbsp;<img src="/covers/identified_bible_sml.jpg" width="120" height="148" alt="Identified" border="0">&nbsp;<img src="/covers/thirsty_bible_sml.jpg" width="120" height="148" alt="Thirsty" border="0"></a>
</p>

<br><br><br><br><br>
</div>
|;

&print_footer;

sub print_header {
     print "Content-type: text/html\n\n";
     open(HEAD, "header.inc") || print "Error opening template";
     while(<HEAD>) { print; }
     close HEAD;
}

sub print_footer {
     open(FOOT, "footer.inc") || print "Error opening template";
     while(<FOOT>) { print; }
     close FOOT;
}


