/*Javascript to find current year to use in copyright notice*/
var copydate=new Date();
var copyyear=copydate.getFullYear();
document.write(copyyear);

