<!--
// copyright.js
//
// Function to display copyright information
//
function copydate(start)
    {
    var today = new Date() ;
    owner = " Richard &amp; Sandra Harte" ;
    year = today.getYear() ;
    if (year < 1000) year += 1900 ;
    if ((start != "") && (start != year))
        year = start + " - " + year ;
    document.write ("<P ALIGN=\"CENTER\"><FONT SIZE=\"-1\"><I>Copyright &copy; " + year + owner + "</I></FONT></P>") ;
    }
// -->