function la_date() { var thisday=new Date(); var day=thisday.getDay(); if (day == 0){document.write("Dimanche");} if (day == 1){document.write("Lundi");} if (day == 2){document.write("Mardi");} if (day == 3){document.write("Mercredi");} if (day == 4){document.write("Jeudi");} if (day == 5){document.write("Vendredi");} if (day == 6){document.write("Samedi");} document.write(" "+thisday.getDate()+" "); var day=thisday.getMonth(); if (day == 0){document.write("janvier");} if (day == 1){document.write("f&eacute;vrier");} if (day == 2){document.write("mars");} if (day == 3){document.write("avril");} if (day == 4){document.write("mai");} if (day == 5){document.write("juin");} if (day == 6){document.write("juillet");} if (day == 7){document.write("ao&ucirc;t");} if (day == 8){document.write("septembre");} if (day == 9){document.write("octobre");} if (day == 10){document.write("novembre");} if (day == 11){document.write("d&eacute;cembre");} var year=thisday.getFullYear(); document.write(' '); document.write(year);}function la_datebis() { var thisday=new Date(); var day=thisday.getDay(); if (day == 0){document.write("Dimanche");} if (day == 1){document.write("Lundi");} if (day == 2){document.write("Mardi");} if (day == 3){document.write("Mercredi");} if (day == 4){document.write("Jeudi");} if (day == 5){document.write("Vendredi");} if (day == 6){document.write("Samedi");} document.write(" "+thisday.getDate()+" "); var day=thisday.getMonth(); if (day == 0){document.write("janvier");} if (day == 1){document.write("f&eacute;vrier");} if (day == 2){document.write("mars");} if (day == 3){document.write("avril");} if (day == 4){document.write("mai");} if (day == 5){document.write("juin");} if (day == 6){document.write("juillet");} if (day == 7){document.write("ao&ucirc;t");} if (day == 8){document.write("septembre");} if (day == 9){document.write("octobre");} if (day == 10){document.write("novembre");} if (day == 11){document.write("d&eacute;cembre");} var year=thisday.getYear(); document.write(' '); document.write(year-100+2000);}function  ze_date() { var thisday=new Date(); var day=thisday.getDay(); if (day == 0){document.write("Sunday");} if (day == 1){document.write("Monday");} if (day == 2){document.write("Tuesday");} if (day == 3){document.write("Wednesday");} if (day == 4){document.write("Thursday");} if (day == 5){document.write("Friday");} if (day == 6){document.write("Saturday");} document.write(" "); var day=thisday.getMonth(); if (day == 0){document.write("Jabuary");} if (day == 1){document.write("February");} if (day == 2){document.write("March");} if (day == 3){document.write("April");} if (day == 4){document.write("May");} if (day == 5){document.write("June");} if (day == 6){document.write("July");} if (day == 7){document.write("August");} if (day == 8){document.write("September");} if (day == 9){document.write("October");} if (day == 10){document.write("November");} if (day == 11){document.write("December");} document.write(" "+thisday.getDate()+" - "); var year=thisday.getYear(); document.write(" "); document.write(year-100+2000);}function displayDate() {  var now = new Date();  var today = now.getDate();  var month = now.getMonth();    var monthName = new Array(12)      monthName[0]="January ";      monthName[1]="February ";      monthName[2]="March ";      monthName[3]="April ";      monthName[4]="May ";      monthName[5]="June ";      monthName[6]="July ";      monthName[7]="August ";      monthName[8]="September ";      monthName[9]="October ";      monthName[10]="November ";      monthName[11]="December ";  var year = now.getFullYear();  document.write(monthName[month]+today+ ", "+year);}