
  function header(PageTitle)
  {
   document.write('<CENTER>');
   document.write('<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 WIDTH=700');
   document.write('<TR>')
   document.write('  <TD ALIGN=left WIDTH=115>')
   document.write('    <A HREF="../index.html"> <IMG width=100 height=40 SRC="../gifs/ss-100.gif" ALT="Sea Scripts Home" BORDER=0></A>')
   document.write('  </TD>')
   document.write('  <TD ALIGN=left> <SPAN CLASS=header>')
   document.write(PageTitle)
   document.write('  </SPAN>')
   document.write('  </TD>')
   document.write('</TR>');
   document.write('<TR>');
   document.write('<TD COLSPAN=2><HR SIZE=4 COLOR=red>')
   document.write('</TR></TABLE>');
  }


 function copyright(LastDate)

  {

   document.write('<HR WIDTH=700 COLOR=red SIZE=4 ALIGN=center>');
   document.write('<TABLE border=0 CELLPADDING=5 WIDTH=700 ALIGN=center>');
   document.write('<TR>');
   document.write('<TD><A HREF="../index.html"> <IMG width=100 height=40 SRC="../gifs/ss-100.gif" ALT="Sea Scripts" BORDER=0></A></TD>');
   document.write('<TD>Copyright (c) 2000-2005, Sea Scripts <A HREF="http://www.seascripts.com/forms/contact.html">(Contact us)</A>');
   document.write('<BR>Last revision: ');

   lastmod = document.lastModified     // get string of last modified date
   lastmoddate = Date.parse(lastmod)   // convert modified string to date
   if(lastmoddate == 0)
    {               // unknown date (or January 1, 1970 GMT)
     document.write(LastDate)
    }
     else
    {
     document.write(lastmod)
    }

   document.write('<BR>URL:<I>'+ window.location.hostname + window.location.pathname + ' </I>');
   document.write('</TD></TR>');
   document.write('</TABLE>');
   document.write('</CENTER>');
  }


//-->
