// Prints the current date
function todaysDate() {
   theDate= new Date();
   var months = new Array('janvier', 'f&eacute;vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', 'ao&ucirc;t', 'septembre', 'octobre', 'novembre', 'd&eacute;cembre');
   var day = theDate.getDate();
   var abrev = 'th';
      if(day == 1) {
	  abrev = 'er';
	  }
      else {
	  abrev = '';
	  }
   var textdate = 0;
   if (theDate.getYear() < 2000) {
      textdate = 1900;
   }
   textdate = day + '<sup>' + abrev +'</sup> ' + months[theDate.getMonth()] + ', ' + (theDate.getYear() + textdate);
   document.write(textdate);
}
/*********************************************************************/