//Copyright Postamble

function getthedate(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900

//change font size here
var cdate="<small><b>"+year+"&nbsp;</b></small>"
if (document.all)
document.all.clock.innerHTML=cdate
else if (document.getElementById)
document.getElementById("clock").innerHTML=cdate
else
document.write(cdate)
}
if (!document.all&&!document.getElementById)
getthedate()
function postamble(){
if (document.all||document.getElementById)
setInterval("getthedate()",0)
}