function BL_Foot()
{
   var s = new Array();
   var n = 0;
   s.push("<tr><td bgcolor='#000099' align='center' style='border-top:1px solid grey;' height='10px'><font color='white' size='1'>");
   s.push("<table cellpadding='0' cellspacing='4' border='0' width='600px' style='font-size: 9pt;'><tr>");
   
   for (n = 0; n < mCount; n++)
   {
      if (mLink[n] != "")
      {
         s.push("<td align='center'><a href='");
         s.push(mLink[n]);
         s.push("'><font color='white'>");
         s.push(mItem[n]);
         s.push("</font></a></td>");
      }
   }

   s.push("</tr><table>");
   s.push("<font size='1' color='white'>Copyright © 2005 - Bonnie Lake Campground");
   s.push("</font></td></tr>");

   document.write(s.join(""));
}
