function footer (localname)
{
var linkname = new Array();
var linklink = new Array();
linkname[0] = "home";
linklink[0] = "index.html";
linkname[1] = "Cacti";
linklink[1] = "cactus.html";
linkname[2] = "Fossils";
linklink[2] = "fossils.html";
linkname[3] = "Misc.";
linklink[3] = "misc.html";
linkname[4] = "Potentials";
linklink[4] = "potentials.html";
linkname[5] = "Mantis";
linklink[5] = "mantis.html";
linkname[6] = "Cactus Shows";
linklink[6] = "csssj.html";
linkname[7] = "T-shirts";
linklink[7] = "http://www.ckart.com/tshirts/";
linkname[8] = "Surreal";
linklink[8] = "surreal.html";
linkname[9] = "Disclaimer";
linklink[9] = "disclaimer.html";
linkname[10] = "Link Reviews";
linklink[10] = "links.html";
linkname[11] = "email";
linklink[11] = "mailto:ckart1@ckart.com";
document.write("<center><P><hr align=center width='75%' size=2 noshade></P><P><font size=2 class='footer'>");
document.write("§ ");
for (i=0; i<linkname.length; i++)
   {
    if (localname == linkname[i])
       {
        document.write(linkname[i] + " § ");
       }
   else
       {
        document.write("<a href='" + linklink[i] + "'>" + linkname[i] + "</a> § ");
       };
   };
document.write("</font></P><font size=1 class='footer'> <I>Copyright &copy; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 <b><a href='mailto:ckart1@ckart.com'> CKArt</a></b></I>.<br>Reproduction or modification of material published on this web site requires written permission from the author.<br></font></center>");
document.close();
};
