
<!--

function heure() { 
var Maintenant = new Date(); 
var fuseau = Maintenant.getTimezoneOffset();
var heures = Maintenant.getHours(); 
var minutes = Maintenant.getMinutes(); 
var secondes = Maintenant.getSeconds();
heures = heures + (fuseau/60)+1;
//heure été
var annee = Maintenant.getFullYear();
for (i=31; i >24; i--) {
dimanche = new Date(annee, 2, i);
if (dimanche.getDay()==0) break;
}
for (i=31; i >24; i--) {
dimanche2 = new Date(annee, 9, i);
if (dimanche2.getDay()==0) break;
}
if (Maintenant >= dimanche && Maintenant < dimanche2) heures = heures + 1;
//heure été
heures = ((heures < 10) ? " 0" : " ") + heures;
minutes = ((minutes < 10) ? ":0" : ":") + minutes; 
secondes = ((secondes < 10) ? ":0" : ":") + secondes; 
document.formhorloge.horloge.value = heures + minutes + secondes;
setTimeout("heure()",1000); 
}

