//used to calculate the year in the footer of the build a council web site templates
	function yearCalc(){
            var now = new Date();
            var this_year = now.getFullYear()
            document.write(this_year);
        }
