// JavaScript Document
//Sharon Poore May 2011
//these commands change the date on the footer

//alert("the date files are linked");

var mydate=new Date();

var getspan=document.getElementById("date");



//this brings the info from insert year and brings it into
//js and puts it in the variable getspan

//this inserts the full year into my HTML element with the
//id insertyear
getspan.innerHTML=mydate.getFullYear();


//updates the date in the footer


getspan.innerHTML=mydate.getFullYear();
