// footer.js
// stores the name to put into the footer copyright
var addCopyright = false;
var footerName = "&#169; 2009 Mary Jo Lawrence - All images on this Website are protected by copyright law and no image may be reproduced in whole or in part without the express written permission of the artist.";
if (addCopyright)
document.write(" by " + footerName + " &#169; 2009 ");

