 months = new Array();
months[1] = "Januari";  months[7] = "Juli";
months[2] = "Februari"; months[8] = "Augustus";
months[3] = "Maart";    months[9] = "September";
months[4] = "April";    months[10] = "Oktober";
months[5] = "Mei";      months[11] = "November";
months[6] = "Juni";     months[12] = "December";

todaysdate = new Date();
date  = todaysdate.getDate();
month = todaysdate.getMonth() + 1;
yy = todaysdate.getYear();
year = (yy < 1000) ? yy + 1900 : yy;

function laatsteupdate() {
if (month == 7)
	{if (date < 3) 
	 {date = 1}
	else
	 {date = date -2}
	}
if (month == 8)
	{if (date < 3) 
	 {date = 1}
	else
	 {date = date -2}
	}
return date + " " + months[month] + " " + year
}

document.write(laatsteupdate())