#!/s/std/bin/perl

use strict;
use CGI qw(:standard);

print header;

my $thispage = 1;
$thispage = param('page') if (param('page'));



my @IMAGES = ( "page-1-title.jpg",
               "page-2-copyright.jpg",
               "page-3-dedication.jpg",
               "page-4-table.jpg",
               "page-5-picture.jpg",
               "page-6-text.jpg",
               "page-7-text.jpg",
               "page-8-text.jpg" );

my $nextpage = $thispage+1;
$nextpage = 1 if ($nextpage == $#IMAGES+2);

my $previouspage = $thispage-1;

my $printfirst = "<a href=pages.cgi?page=1 title=First><font size=4>\<\<</a> <img src=images/blank.gif> <a href=pages.cgi?page=$previouspage title=Previous><font size=4>\<</a>";
$printfirst = "" if ($thispage == 1);

my $printlast = "<a href=pages.cgi?page=$nextpage title=Next><font size=4>\></a> <img src=images/blank.gif> <a href=pages.cgi?page=8 title=Last><font size=4>\>\></a>";
$printlast = "" if ($thispage == $#IMAGES+1);

print <<EOF;
<html>
<head>
<title>The Gas Kids</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<center>
<body bgcolor="#bebd51" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">

<img src="images/blank.gif" height=20>

<table id="Table 00" width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="25%" align=right>
      $printfirst
    </td><td width="50%" align="center">
<a href=pages.cgi?page=$nextpage><img src="images/$IMAGES[$thispage-1]" border=0></a>
    </td><td width="25%" align=left>
      $printlast
  </tr>
</table>

<img src="images/blank.gif" height=20>

<table id="Table_01" width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center" valign="top" bgcolor="#312c21">
      <a href="index.html">Home</a> | <a href="book.html">About the Book</a> | <a href="pages.cgi">First Pages</a> | <a href="commercial.html">TV Commercial</a> | <a href="author.html">About the Author</a> | <a href="interview.html">Author Interview</a> | <a href="making.html">In the Making</a> | <a href="tips.html">Simple Green Tips</a> <br>
          Contact Us at: <a href=mailto:dawncraft\@theGASkids.com>dawncraft\@theGASkids.com</a><br>
&copy; 2011 The GAS Kids.  All Rights Reserved<br>
    </td>
  </tr>
</table>
</body>
</center>
</html>

EOF
;
