function getthedate()
{
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var today=new Date();
today.setDate(today.getDate()-1);
date=today.getDate();
month=today.getMonth();
year=today.getYear();
if (year<1900) {year=year+1900}
var copyrighttext=document.getElementById('copyright').innerHTML
document.getElementById('copyright').innerHTML=(copyrighttext+' '+date+' '+montharray[month]+' '+year);
}

if (window.addEventListener)
window.addEventListener("load", getthedate, false)
else if (window.attachEvent)
window.attachEvent("onload", getthedate)
else if (document.all)
window.onload=getthedate
