
/*
 *  File:    Mfooter.js
 *  Author:  S Harry White
 *  Created: 2009-05-12
 */

function addFooter() {
  var s =  "<p class=\"centernb\"><img src=\"images/blueLine.jpg\" alt=\"\"</p>";
      s += "<table class=\"center\" width=\"650\"><tr>";
      s += "<td class=\"tinyl\">Copyright &copy; 2009-2012</td>";
      s += "<td class=\"tinyc\">Magic Squares</td>";
      s += "<td class=\"tinyr\">Updated: 2012-02-08</td></tr></table>";
      s += "<p class=\"centerntnb\"><img src=\"images/blueLine.jpg\" alt=\"\"<br />";
      s += "<p class=\"centernt\"><a href=\"#top\" class=\"hyperlink\"";
      s += "title=\"Return to Top of Page\">"
      s += "<img class=\"uparrow\" src=\"images/uarr.gif\" alt=\"up arrow\" />";
      s += "<br />Top of Page</a></p>";
  document.getElementById("footer").innerHTML = s;
}

