// JavaScript Document

//written by Elizabeth McKenzie

//alert("this file is linked to add_year_2.js");

//this adds the year between the copyright symbol and the designer name
//the name of the span in the html file is insertyear2
var mydate= new Date();
var getspan=document.getElementById("insertyear2");
getspan.innerHTML=mydate.getFullYear();
