<!-- 
var NS4 = (document.layers) ? 1:0
var IE4 = (document.all) ? 1:0

function Couleur(couleur)
{	if (IE4)
	{	window.event.srcElement.style.color = couleur;
	}
}

function tick() {
var hours, minutes, seconds;
var intHours, intMinutes, intSeconds;
var intDay, intDate, intMonth, intYear
var txtDay, txtMonth
var today, timeString="&nbsp;"

today = new Date()
intDay = today.getDay()
intDate= today.getDate()
intMonth=today.getMonth()
intYear=today.getYear()
intHours = today.getHours();
intMinutes = today.getMinutes();
if (intDay == 0) {txtDay="Dimanche "}
if (intDay == 1) {txtDay="Lundi "}
if (intDay == 2) {txtDay="Mardi "}
if (intDay == 3) {txtDay="Mercredi "}
if (intDay == 4) {txtDay="Jeudi "}
if (intDay == 5) {txtDay="Vendredi "}
if (intDay == 6) {txtDay="Samedi "}
if (intMonth == 0) {txtMonth=" janvier "}
if (intMonth == 1) {txtMonth=" février "}
if (intMonth == 2) {txtMonth=" mars "}
if (intMonth == 3) {txtMonth=" avril "}
if (intMonth == 4) {txtMonth=" mai "}
if (intMonth == 5) {txtMonth=" juin "}
if (intMonth == 6) {txtMonth=" juillet "}
if (intMonth == 7) {txtMonth=" août "}
if (intMonth == 8) {txtMonth=" septembre "}
if (intMonth == 9) {txtMonth=" octobre "}
if (intMonth == 10) {txtMonth=" novembre "}
if (intMonth == 11) {txtMonth=" décembre "}
timeString = txtDay + intDate + txtMonth + intYear + " "
hours = intHours+":";
 if (intHours < 20 && intHours >7)
	{	document.body.style.background = "blue url(logo7.jpg)"
		document.all.Clock.style.color = "rgb(0, 0, 255)"
		//document.all.Clock.style.filter = "glow(color=yellow,strength=3)"
  	}
else
	{	document.body.style.background = "black url(logo7.jpg)"
		document.all.Clock.style.color = "rgb(255, 255, 255)"
		//document.all.Clock.style.filter = "glow(color=yellow,strength=3)"
	}

  if (intMinutes < 10) {
     minutes = "0"+intMinutes;
  } else {
     minutes = intMinutes;
  }

  timeString = timeString + hours+minutes;

Clock.innerHTML = timeString
window.setTimeout("tick();", 3000);
}
window.onload = tick;
// -->

