function MakeArray(n) {
	this.length = n
	return this
}
monthNames = new MakeArray(12)
monthNames[1] = "Janvier"
monthNames[2] = "Février"
monthNames[3] = "Mars"
monthNames[4] = "Avril"
monthNames[5] = "Mai"
monthNames[6] = "Juin"
monthNames[7] = "Juillet"
monthNames[8] = "Août"
monthNames[9] = "Septembre"
monthNames[10] = "Octobre"
monthNames[11] = "Novembre"
monthNames[12] = "Décembre"
dayNames = new MakeArray(7)
dayNames[1] = "Dimanche"
dayNames[2] = "Lundi"
dayNames[3] = "Mardi"
dayNames[4] = "Mercredi"
dayNames[5] = "Jeudi"
dayNames[6] = "Vendredi"
dayNames[7] = "Samedi"

function customDateString() {
	currentDate = new Date()
	var theDay = dayNames[currentDate.getDay() + 1]
	var theMonth = monthNames[currentDate.getMonth() + 1]
	msie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
	if (msie4) {
	    var theYear = currentDate.getYear()
	}
	else {
	     var theYear = currentDate.getYear() +1900
	}
	return theDay + ", " +  " " + currentDate.getDate() + theMonth +", " + theYear
}
//-->
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript" type="text/JavaScript">
<!--
function showFilled(Value) {
  return (Value > 9) ? "" + Value : "0" + Value;
}
function StartClock24() {
  TheTime = new Date;
  document.clock.showTime.value = showFilled(TheTime.getHours()) + ":" + showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds());
  setTimeout("StartClock24()",1000)
}
