function gettime()
{
var theyearis = "01"
var theMonths = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", 
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
Todayis = new Date();
year = Todayis.getYear();
//if (year < 2000) year = 1900 + year;
document.write('<font size="2" face="Verdana,Arial">'+ "<b>" + Todayis.getDate()+ "&nbsp;" + theMonths[Todayis.getMonth()] + "&nbsp;" + theyearis+'</b></font>');
}