Import Static HTML5 Footer
This only works in Firefox
<script>
var ajax = new XMLHttpRequest();
ajax.open("GET", "footer.htm", false);
ajax.send();
document.body.innerHTML += ajax.responseText;
</script>
This works, but it make the code hard to read since the HTML is warped in JS.
<script type="text/javascript" src="footer.js"></script>