<!-- Begin
/******************************************/
/* To show the footer of the current page */
/*                                        */
/* needs the following constants :        */
/*    cPageCodeCurrent                    */
/*    cPageLangCurrent                    */
/******************************************/
document.write(
'<br>');
about=writeNavigationBar();
document.write(
'<TABLE width="100%" border="1"  cellpadding="2" cellspacing="0" ',
  'bordercolor="#551A8B" frame="above" rules="none">',
  '<TR>',
    '<TD width="50%" align="left" valign="middle">',
      '<FONT size="1">');
      var update = document.lastModified;
      updateDate = new Date(update);
      var day= updateDate.getDate();
      var month= updateDate.getMonth()+1;
      var year= updateDate.getYear();
      if (year < 2000)
        year = year + 1900;
      if(cPageLangCurrent=="fr") {
        dateStr= ((day < 10) ? "0" : "") + day;
       	dateStr+= ((month < 10) ? "/0" : "/") + month;
        dateStr+= "/" + year;
		document.write("Mise à jour : "+dateStr);
	  }
	  else  {
       	dateStr= ((day < 10) ? "0" : "") + day;
        dateStr+= ((month < 10) ? "/0" : "/") + month;
        dateStr+= "/" + year;
		document.write("Bijgewerkt op "+dateStr);
	  }
	document.write(

    '</FONT></TD>',
  '</TR>',
'</TABLE>');
// End -->