var now = new Date(document.lastModified); //Create new Date Object // Copyright 1997 Corel Corporation // var now = new Date(); var yr = now.getYear(); if (yr < 2000) yr = yr + 1900; var mName = now.getMonth() + 1; var dName = now.getDay() + 1; //var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate(); var dayNr = now.getDate(); if(dayNr==1) dayNr = " premier" if(dName==1) Day = "dimanche"; if(dName==2) Day = "lundi"; if(dName==3) Day = "mardi"; if(dName==4) Day = "mercredi"; if(dName==5) Day = "jeudi"; if(dName==6) Day = "vendredi"; if(dName==7) Day = "samedi"; if(mName==1) Month="janvier"; if(mName==2) Month="février"; if(mName==3) Month="mars"; if(mName==4) Month="avril"; if(mName==5) Month="mai"; if(mName==6) Month="juin"; if(mName==7) Month="juillet"; if(mName==8) Month="août"; if(mName==9) Month="septembre"; if(mName==10) Month="octobre"; if(mName==11) Month="novembre"; if(mName==12) Month="décembre"; // String to display current date. var todaysDate =("" + Day + ", le " + dayNr + " " + Month + " " + "" + yr + "
"); // Write date to page. document.open(); document.write(""+todaysDate+"");