
// Handy for updating standard footer information for all pages at once.
function pageFooter() {
   document.write('<div class="footer"><p><span  class="txtBlack10px">\n'
                 +'Site last updated: 14th November 2011\n'
                 +'<br>Problems with this page?\n'
                 + 'Contact <a id="webmaster" class="linkRed10px" '
                 + 'href="mailto:sacurtis2 at gmail dot com" '
                 + 'onMouseOver="enablemailto(\'webmaster\',\'sacurtis2\',\'gmail.com\','
                 + '\'RO website (main page)\');">the webmaster</a>.\n'
                 + '</span></p></div>');

}

     function enablemailto(emaillink,alias,domain,subject) {
        if (subject=='') {
          document.getElementById(emaillink).href = "mailto:"+ alias + "@" + domain;
        }
        else {
          document.getElementById(emaillink).href
             = "mailto:"+ alias + "@" + domain + "?subject=" + subject;
        }
     }


