// Copyright statement displays at the bottom of every page
function copydate ()
 {
    today=new Date();
    yearonly=today.getFullYear();
	if (yearonly == "2009") {
		firstyear = "&copy;&nbsp;"
    } else {
	 	firstyear = "&copy;&nbsp;2009-"
    }
    document.write(firstyear +yearonly + ' WMCT TV and <em>m8</em>, Marlborough, Massachusetts cable TV. All rights reserved.');
 }