var dag = new Array("zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag");
var maand = new Array("januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december");

var lastUpdate = new Date(document.lastModified);

var modifiedyear=lastUpdate.getYear()
if (modifiedyear<100)
  modifiedyear+=100;
if (modifiedyear<1000)
  modifiedyear+=1900;

lastupdate01 = dag[lastUpdate.getDay()] + ' ' + lastUpdate.getDate() + ' ' + maand[lastUpdate.getMonth()] + ' ' + modifiedyear;
lastupdate02 = dag[lastUpdate.getDay()] + ' ' + lastUpdate.getDate() + ' ' + maand[lastUpdate.getMonth()] + ' ' + modifiedyear;
lastupdate03 = lastUpdate.getDate() + ' ' + maand[lastUpdate.getMonth()] + ' ' + modifiedyear;
lastupdate04 = lastUpdate.getDate() + '/' + lastUpdate.getMonth() + '/' + modifiedyear;

wijziging = dag[lastUpdate.getDay()] + ' ' + lastUpdate.getDate() + ' ' + maand[lastUpdate.getMonth()] + ' ' + modifiedyear + ', ' + lastUpdate.getHours()+':'+lastUpdate.getMinutes()+':'+lastUpdate.getSeconds()
wijzigingkort = dag[lastUpdate.getDay()] + ' ' + lastUpdate.getDate() + ' ' + maand[lastUpdate.getMonth()] + ' ' + modifiedyear
