
var days=new Object;var months=new Object;days[0]="DIMANCHE";days[1]="LUNDI";days[2]="MARDI";days[3]="MERCREDI";days[4]="JEUDI";days[5]="VENDREDI";days[6]="SAMEDI";months[0]="JANVIER";months[1]="FEVRIER";months[2]="MARS";months[3]="AVRIL";months[4]="MAI";months[5]="JUIN";months[6]="JUILLET";months[7]="AOUT";months[8]="SEPTEMBRE";months[9]="OCTOBRE";months[10]="NOVEMBRE";months[11]="DECEMBRE";function GetDate(){var date=new Date();var retour="";var year=date.getYear();var br=navigator.appVersion;if(br.indexOf("3.")==-1)year=date.getFullYear();if(date.getDate()!=1)retour=days[date.getDay()]+" "+date.getDate()+" "+months[date.getMonth()];else retour=days[date.getDay()]+" 1er "+months[date.getMonth()];return retour;}
document.write(GetDate());
