
					var now = new Date();

					var date;

					var date = now.getDate();

					var month = now.getMonth();

					var year = now.getYear();
					

					if (month==0) month="janvier";

					if (month==1) month="fevrier";

					if (month==2) month="mars";

					if (month==3) month="avril";

					if (month==4) month="mai";

					if (month==5) month="juin";

					if (month==6) month="julliet";

					if (month==7) month="aout";

					if (month==8) month="septembre";

					if (month==9) month="octobre";

					if (month==10) month="novembre";

					if (month==11) month="decembre";

					


					if (year < 2000)    

					year = year + 1900; 

					document.write (date + " " +  month + ", " + year);
