<!--  Copright (c) de WEB matchers -->

var Datum = "";
var theDate = new Date();
Datum = Datum + theDate.getDate();

if ( theDate.getMonth() == 0 ) Datum = Datum + " Januari ";
if ( theDate.getMonth() == 1 ) Datum = Datum + " Februari ";
if ( theDate.getMonth() == 2 ) Datum = Datum + " Maart ";
if ( theDate.getMonth() == 3 ) Datum = Datum + " April ";
if ( theDate.getMonth() == 4 ) Datum = Datum + " Mei ";
if ( theDate.getMonth() == 5 ) Datum = Datum + " Juni ";
if ( theDate.getMonth() == 6 ) Datum = Datum + " Juli ";
if ( theDate.getMonth() == 7 ) Datum = Datum + " Augustus ";
if ( theDate.getMonth() == 8 ) Datum = Datum + " September ";
if ( theDate.getMonth() == 9 ) Datum = Datum + " Oktober ";
if ( theDate.getMonth() == 10 ) Datum = Datum + " November ";
if ( theDate.getMonth() == 11 ) Datum = Datum + " December ";
					  
Datum = Datum + theDate.getYear();
document.open();
document.writeln(Datum.bold());
document.close();

