dDate = new Date();
	
arrDaysOfWeek = new Array('Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag');
arrMonths = new Array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
hours = dDate.getHours()
minutes = dDate.getMinutes()
if (minutes < 10){minutes = "0" + minutes}

strDate = arrDaysOfWeek[dDate.getDay()] + ' ' + dDate.getDate() + '-' + arrMonths[dDate.getMonth()] + '-' + dDate.getFullYear();

document.write(strDate);



