//Then give the file a name, such as "datenow.js." It should look like the one in the //box below (the last few lines may look different if you have made changes to the display format).
//
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
      var now = new Date();
      var days = new Array(
        'Zondag','Maandag','Dinsdag','Woensdag','Donderdag','Vrijdag','Zaterdag');
      var months = new Array(
        'Januari','Februari','Maart','April','Mei',
        'Juni','Juli','Augustus','September','October',
        'November','December');
      var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
        function fourdigits(number)	{
          return (number < 1000) ? number + 1900 : number;}
      today =  days[now.getDay()] + ", " + date + "-" +
        months[now.getMonth()] + "-" +(fourdigits(now.getYear()));
      document.write(today);

//To call the script, place a link to the file you just 
//created on the Web page where you want the date displayed. 
//The link should look like this: 
//<script language="JavaScript" src="datenow.js"></script> 
//Besure there are no spaces or code between the opening 
//and closing <script> tags as this may cause 
//the loading of the script to fail.