function getCalendarDate()
{
   var months = new Array(13);
   months[0]  = "januari";
   months[1]  = "februari";
   months[2]  = "maart";
   months[3]  = "april";
   months[4]  = "mei";
   months[5]  = "juni";
   months[6]  = "juli";
   months[7]  = "augustus";
   months[8]  = "september";
   months[9]  = "oktober";
   months[10] = "november";
   months[11] = "december";
   var now         = new Date();
   var monthnumber = now.getMonth();
   var monthname   = months[monthnumber];
   var monthday    = now.getDate();
   var year        = now.getYear();
   if(year < 2000) { year = year + 1900; }
   var dateString = monthday +
                    ' ' +
                    monthname +
                    ' ' +
                    year;
   return dateString;
} // function getCalendarDate()
