
function writeBottom (pageName,updatedDate)  {
  document.write('<TR>');
  document.write('<TD BGCOLOR="#BD0000" ALIGN="center" VALIGN="bottom">');
//*** Because the Netscape browser won't render the background color of this cell
//*** unless it contains some content, stuff this unneeded image in.
  document.write('<IMG SRC="onepixel.gif" BORDER="0" HSPACE="0" VSPACE="0">');
  document.write('<TD>');
  document.write('<TD HEIGHT="30">');
  document.write('<TR>');
  document.write('<TD BGCOLOR="#BD0000" ALIGN="center" VALIGN="bottom">');
//*** Because the Netscape browser won't render the background color of this cell
//*** unless it contains some content, stuff this unneeded image in.
//  document.write('<IMG SRC="onepixel.gif" BORDER="0" HSPACE="0" VSPACE="0">');
//uncomment above statement if counter is removed from this cell
//Next if/else writes the counter. Counter is visible on home page but invisible
//on the rest. Same counter appears on all pages so it counts site visits not
//page visits. Hopefully it does not multiple count people as they move from one
//page to the next. Reload parm is set to N which controls that. However something
//must also be set in the server config file and I could not get an answer from
//rootsweb whether that is the case.
  if (pageName == "Home")  {
    document.write('<FONT FACE="GillSans,Futura,Arial,Helvetica" COLOR="#FFFFFF" SIZE="-2">');
    document.write('You are site visitor');
    document.write('</FONT>');
    document.write('<BR>');
    document.write('<IMG SRC="http://counter.rootsweb.com/cgi-bin/Count.cgi?df=Wickersham&dd=E&md=8&pad=N&chcolor=Y&srgb=00ff00&prgb=ffffff&ft=1&frgb=ffffff&trgb=000000" BORDER="0">');
//    document.write('<img src="http://counter.rootsweb.com/cgi-bin/Count.cgi?df=Wickersham" BORDER="0">');
    document.write('<BR>');
    document.write('<FONT FACE="GillSans,Futura,Arial,Helvetica" COLOR="#FFFFFF" SIZE="-2">');
    document.write('since Dec. 18, 1999.');
    document.write('</FONT>');
    document.write('<BR>');
    document.write('<IMG SRC="onepixel.gif" BORDER="0" WIDTH="120" HEIGHT="6" HSPACE="0" VSPACE="0">');
  }
  else  {
    document.write('<IMG SRC="http://counter.rootsweb.com/cgi.bin/Count.cgi?df=Wickersham&dd=D&md=8&pad=N&reload=N&chcolor=Y&srgb=00ff00&prgb=ffffff&ft=1&frgb=ffffff" BORDER="0" WIDTH="0" HEIGHT="0">');
  }
  document.write('<TD>');
  document.write('<TD ALIGN="center">');
  document.write('<FONT FACE="sans-serif" SIZE="-2" COLOR="#000000">');
  document.write('Copyright &#169 1999-2007,&nbsp'); 
  document.write('<A HREF="mailto:&#103;&#114;&#100;&#97;&#118;&#105;&#115;&#64;&#99;&#101;&#110;&#116;&#117;&#114;&#121;&#116;&#101;&#108;&#46;&#110;&#101;&#116;?subject=The Wickersham Family in America">Gay R. Davis</A>')
  document.write(', All Rights Reserved');
  document.write('<BR>');
  document.write('This page last updated ' + updatedDate);
  document.write('<BR>');
  document.write('Website design by&nbsp'); 
  document.write('<A HREF="mailto:&#115;&#107;&#101;&#101;&#122;&#105;&#99;&#107;&#115;&#64;&#119;&#105;&#99;&#107;&#101;&#114;&#115;&#104;&#97;&#109;&#46;&#119;&#115;?subject=The Wickersham Family in America">David L. Wickersham</A>');
  document.write('</FONT>');
  document.write('</TABLE>');
  document.write('</BODY>');
}