

/**

	Affichage de l'heure et quelques broutilles

**/


function displayNow () {
	var months=new Array(12);
		months[1]="１月";
	months[2]="2月";
	months[3]="3月";
	months[4]="4月";
	months[5]="5月";
	months[6]="6月";
	months[7]="7月";
	months[8]="8月";
	months[9]="9月";
	months[10]="10月";
	months[11]="11月";
	months[12]="12月";

	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var mois = time.getMonth() + 1;
	if (mois < 10) {
		mois = "0" + mois;
	}
	var date=time.getDate();
	var jour=time.getDate();
	if ( jour < 10) {
		jour = "0" + jour;
	}
	var year=time.getYear();
	if (year < 1900) {
		year+= 1900;
	}
	 document.write('&nbsp;<span class="bandeaudate">' + year + "-" + mois  + "-" + jour + " ");
 document.write( "- " + date + " "+ lmonth + " " + year );
document.write('</span>')
}
