<!--
// copyright.js
//
// Function to display copyright information
//
function copydate(start)
    {
    var today = new Date() ;
    owner = "Marshall Associates Group" ;
    year = today.getYear() ;
    if (year < 1000) year += 1900 ;
    if ((start != "") && (start != year))
        year = start + " - " + year ;
    document.write ("<P class=\"copyright\">Copyright &copy; " + year + " " + owner + "</P>") ;
    }
// -->
