// Copyright statement displays at the bottom of every page
function copydate()
 {
    today=new Date();
    yearonly=today.getFullYear();
    document.write(yearonly);
 }
