<!-- Begin
var months=new Array(13);
months[1]="Tammikuu";
months[2]="Helmikuu";
months[3]="Maaliskuu";
months[4]="Huhtikuu";
months[5]="Toukokuu";
months[6]="Kesäkuu";
months[7]="Heinäkuu";
months[8]="Elokuu";
months[9]="Syyskuu";
months[10]="Lokakuu";
months[11]="Marraskuu";
months[12]="Joulukuu";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write("<center>" + lmonth + " ");
document.write(date + "</center>");
// End --> 
