
#                               PRINT TOP OF DOCUMENT, PLUS HEADERS

sub print_top {
local ($new_url, $orig_url) = @_;

print STDOUT <<EOF;
Status: 404 Permanently Moved
Expires: Mon, 01 Apr 1996 09:00:00 GMT
Pragma: no-cache
Content-type: text/html

<HTML> <HEAD> <TITLE>
THIS DOCUMENT HAS PERMANENTLY MOVED TO A NEW HOME 
</TITLE> </HEAD>

<BODY>
<!--  Document Header -->
<TABLE WIDTH="100%">
<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
    <EM>The Information Commons</EM><BR>
  <TD ALIGN="RIGHT" VALIGN="TOP">
    <EM>27 June 1996</EM>
</TR>
</TABLE>

<HR SIZE=1 NOSHADE>

<H1 ALIGN="CENTER"> 
    This Document has Permanently Moved <BR>
   <FONT COLOR="red">
   Please correct your bookmarks to reflect the new location
   </FONT>
   
   <HR SIZE=3 NOSHADE>
</H1>
<H2>New URL</H2>
<BLOCKQUOTE>
  <FONT SIZE="+1">
  <DL>
      <DT>Original URL:
      <DD><B>$orig_url</B><BR>
      <DT>New Location: <BR>
      <DD><A HREF="$new_url"><B>$new_url</B></A>
      </DL>
  </FONT>
</BLOCKQUOTE>
EOF
}



#                               PRINT REFERER INFORMATION, IF ANY 

sub print_referer {
   local($referer) = @_;

print STDOUT <<EOF3
<HR SIZE=3 NOSHADE WIDTH="80%">
<H2>Can You Help Fix The Links?</H2>
<BLOCKQUOTE>
  <P><FONT SIZE=+1>
  You apparently arrived here from the following URL:
  <p ALIGN=CENTER>
  <A HREF="$referer"><B>$referer</B></A>
  </P>
  Could you please contact the owner of the above document, and 
  ask them to correct the reference to this moved page?
  </FONT>
</BLOCKQUOTE>

EOF3
}



#                           PRINT FOOTER AND AUXILIARY INFORMATION
sub print_bot {

print STDOUT <<EOF2

</P>
<HR SIZE=1 NOSHADE>

<CENTER><FONT SIZE="-1">
<EM>Want to know how this page was done? The program that did it is available
at:
</EM>
<A HREF="http://www.utoronto.ca/ian/software/redirect/info.html">http://www.utoronto.ca/ian/software/redirect/info.html</A>.
</FONT>
</CENTER>

<HR NOSHADE WIDTH="80%" SIZE=1>

<CENTER>
<FONT SIZE="-1">
  <EM>Problems? Contact us at </EM>
  &lt;<a href="mailto://webmaster@hprc.utoronto.ca">webmaster@hprc.utoronto.ca</a>&gt;
</FONT>
</CENTER>


<HR SIZE=2 NOSHADE>

<TABLE WIDTH="100%">
<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
    <EM>The Information Commons</EM><BR>
  <TD ALIGN="RIGHT" VALIGN="TOP">
    <EM>URL Update Page</EM>
</TR>
</TABLE>
</BODY>
</HTML>

EOF2
}

1;
