<!-- Begin
var months=new Array(13);
months[1]="JANUARI";
months[2]="FEBRUARI";
months[3]="MAART";
months[4]="APRIL";
months[5]="MEI";
months[6]="JUNI";
months[7]="JULI";
months[8]="AUGUSTUS";
months[9]="SEPTEMBER";
months[10]="OKTOBER";
months[11]="NOVEMBER";
months[12]="DECEMBER";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write(date + " " + lmonth + " " + year);
document.write(" - ");
document.write(Date( ).substring(10,16) + "</center>");
// End -->





