<!--

function getDisplayMonth(iMonth) {
    
    // pass in an month as an integer
    // return the month string
       
    var monthArray = new Array("januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december");

    return monthArray[iMonth];
}

function getDisplayDate(passedDate) {
    
    // uses getDisplayMonth()
    // returns passed Date formatted nicely
    // Month day, Year  mmmm dd, yyyy
    
    theDate = new Date(passedDate);
    
    // split into day, month, year
    sDay = theDate.getDate();
    sMonth = theDate.getMonth();

    sYear = new String(theDate.getYear());

    yearLen = sYear.length;
    sYear = sYear.split("");
    tempYear = sYear[yearLen - 2];

    if (!tempYear) {
      tempYear = 0;
    }

    sYear = "20" + tempYear + sYear[yearLen - 1];

//    iYear = theDate.getFullYear();

    sDisplayDate = sDay + " " + getDisplayMonth(sMonth) + " " + sYear;

    return sDisplayDate;
}

function printDate() {
  myDate = new Date(document.lastModified);
  document.writeln('<font face="arial" size=-1>' + '&nbsp;&nbsp; ' + getDisplayDate(myDate) + '</font>');
}

function printTodayDate() {
  myDate = new Date();
  document.writeln('<font face="arial" size=-2>' + '&nbsp;&nbsp;&nbsp;&nbsp;' + getDisplayDate(myDate) + '</font>');
}


function printHeader() {
  document.writeln('<table cellpadding=40 width=100%>');
  document.writeln('<tr><td bgcolor=white>');
  document.writeln('<BR>');
  document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../index.html"><IMG SRC="../pictures/pwk_logo.gif" ALIGN=CENTER BORDER=0></A>');
  document.writeln('<BR><BR><BR>');
  document.writeln('<TABLE WIDTH=100%>');
  document.writeln('<TR><TD VALIGN=Bottom>');

  printDate();

  document.writeln('</TD>');
  document.writeln('<TD ALIGN=right>');
  document.writeln('<TABLE>');
  document.writeln('<TR>');
  document.writeln('<td VALIGN=Bottom><A HREF="archief.html"><IMG SRC="../pictures/pw_artikelen.gif" BORDER=0></A></td>');
  document.writeln('<td VALIGN=Bottom><A HREF="bezoekspuur.html"><IMG SRC="../pictures/pw_spreekuur.gif" BORDER=0></A></td>');
  document.writeln('<td VALIGN=Bottom><A HREF="http://utopia.knoware.nl/~wwitsel/cgi-bin/reactie66.cgi"><IMG SRC="../pictures/pw_reacties.gif" BORDER=0></A></td>');
  document.writeln('<td VALIGN=Bottom><A HREF="subscribe.html"><IMG SRC="../pictures/pw_subscribe.gif" BORDER=0></A></td>');
  document.writeln('</tr>');
  document.writeln('</table>');
  document.writeln('</TD></TR>');
  document.writeln('</TABLE>');
  document.writeln('<HR SIZE=2>');
  document.writeln('<FONT SIZE=2pt FACE="Arial, Helvetica">');

}




// example use
// now = new Date();
// document.writeln("Today's Date is: " + getDisplayDate(now));

//-->
