function footer_blog() 
{


now = new Date();
year = now.getFullYear();
    var txt = "<br><TABLE BORDER=0>" +
      "<TR>" +
      "<TH colspan=4 align='left'>Not copyright " + year +
// &copy; is copyright symbol
      " <a href='http://www.nowandfutures.com'>NowAndFutures.com</a>, " + 
      "but please show us as source when we are (not required).</TH>" +
      "</TR>" +

      "<TR>" +      
      "<td><a href='http://www.NowAndFutures.com/policy.html'>Privacy &amp; other policies</a></td>" +
      "<td><a href='http://www.NowAndFutures.com/about.html'>About us</a></td>" +
      "<td>&nbsp;</a></td>" +
      "<td>&nbsp;</a></td>" +
      "</TR>" +
      "</TABLE>";
    document.write(txt);
}
