Modif = new Date(document.lastModified);
// teste NS 4+
	if(document.layers) {
DateModif = " " + Modif.getDate() + "/" + (Modif.getMonth()+1) + "/" +  Modif.getFullYear();
}
// teste IE 4+
	if(document.all) {
DateModif = " " + Modif.getDate() + "/" + (Modif.getMonth()+1) + "/" +  (Modif.getFullYear()+100);
}
// teste IE 5
	if(document.all&&window.print) {
DateModif = " " + Modif.getDate() + "/" + (Modif.getMonth()+1) + "/" +  Modif.getFullYear();
}

document.write("<FONT SIZE='2'><B> Mise à jour "); 
document.write(DateModif);
document.write("</B></FONT>");



