if (navigator.userAgent.indexOf("MSIE 3") == -1) {
 mdate = new Date(document.lastModified);
 year = mdate.getYear();
 month = mdate.getMonth() + 1;
 day = mdate.getDate();
 hour = mdate.getHours();
 min = mdate.getMinutes();
 var mon;
 var min0;
 
 if (min<10)
  min0="0";
 else
  min0="";
 
 if(month==0)
  mon="januari";
 if(month==1)
  mon="januari";
 if(month==2)
  mon="februari";
 if(month==3)
  mon="maart";
 if(month==4)
  mon="april";
 if(month==5)
  mon="mei";
 if(month==6)
  mon="juni";
 if(month==7)
  mon="juli";
 if(month==8)
  mon="augustus";
 if(month==9)
  mon="september";
 if(month==10)
  mon="oktober";
 if(month==11)
  mon="november";
 if(month==12)
  mon="december";
 
 document.write("Laatste wijziging: " +day+" "+mon+" "+year+" om "+hour+":"+min0+min);
}
