// this displays  the Copyright Page in a small window: written by Louis Gogan 2007
function ShowCopyright() {
open("./copyright.htm","Standard","width=400,height=240,scrollbars=1,location=0,directories=0,resizable=1,status=0,toolbar=0,menubar=0,left=50,top=50")
}


// This displays the bottom section of each page
function ShowFooter()
{
document.write('<p><table width="100%" align=center class=foot><tr><td>')
document.write('HTML coding and design by &nbsp;<a class=notice href="mailto:lougogan@gofree.indigo.ie" title="Lou Gogan">&nbsp;Louis Gogan&nbsp;</a> &nbsp; - &nbsp; ')
document.write('Any problems with this page? Let Lou know.<br>')
document.write('<a class=notice href="javascript:ShowCopyright()">Copyright Notice:</a> &nbsp; &copy; Louis Gogan 2006, 2007, 2008, 2009.')
document.write("<br>All Rights Reserved</table><p>")
}