<!-- 	
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 dateObj = new Date()
var month = months[dateObj.getMonth() + 1]
var date = dateObj.getDate()
var year = dateObj.getYear()
if (year < 2000) year = 1900 + year
document.write(month + " " + year)
// -->




