	var myfont_face2 = "Arial";
	var myfont_size2 = "10";
	var myfont_color2 = "#6390A7";
	var myback_color2 = "#FFFFFF";
	var mywidth2 = 65;
	var my12_hour2 = 1;

	var dn2 = ""; var old2 = "";

	if (document.all||document.getElementById) { document.write('<span id="LiveClockIE2" style="width:'+mywidth2+'px; background-color:'+myback_color2+'"></span>'); }
	else if (document.layers) { document.write('<ilayer bgColor="'+myback_color2+'" id="ClockPosNS2"><layer width="'+mywidth2+'" id="LiveClockNS2"></layer></ilayer>'); }
	else { old2 = "true"; show_clock2(); }

	function show_clock2() {
		//show clock in NS 4
		if (document.layers)
                document.ClockPosNS2.visibility="show"
		if (old2 == "die") { return; }

		var Digital2 = new Date();
		var hours2 = Digital2.getUTCHours() + 1;
		var minutes2 = Digital2.getUTCMinutes();
		var seconds2 = Digital2.getUTCSeconds();
		var jours2 = '0' + Digital2.getUTCDate();		
		jours2 = jours2.substr(jours2.length -2, 2);
		var mois2 = '0' + (Digital2.getUTCMonth() + 1);
		mois2 = mois2.substr(mois2.length -2, 2);		
		var annees2 = Digital2.getUTCFullYear();
		var ladate2 = annees2+mois2+jours2;
		
		/* heure d'ete */
		var bModif2 = false;
		if (ladate2 < '20021027') {
			hours2 = hours2;
		}
		if (ladate2 == '20021027' && hours2 < 3) {
			bModif2 = true;
			hours2 = hours2;
		}
		/* heure d'hiver */
		if ((ladate2 >= '20021027') && (ladate2 < '20030330') && !bModif2) {
				hours2 = hours2 - 1;
		}
		
		bModif2 = false;
		
		if (ladate2 == '20030330' && hours2 < 2) {
				bModif2 = true;
				hours2 = hours2 - 1;
		}
		
		/* heure d'ete */
		if ((ladate2 >= '20030330') && (ladate2 < '20031026') && !bModif2) {
				hours2 = hours2;
		}
		
		bModif2 = false;
		
		if (ladate2 == '20031026' && hours2 < 3) {
				bModif2 = true;
				hours2 = hours2 ;
		}
		/* heure d'hiver */
		if ((ladate2 >= '20031026') && (ladate2 < '20040328') && !bModif2) {
				hours2 = hours2 - 1;
		}
		
		bModif2 = false;
		
		if (ladate2 == '20040328' && hours2 < 2) {
				bModif2 = true;
				hours2 = hours2 - 1;
		}	
		/* heure d'ete */
		if ((ladate2 >= '20040328') && (ladate2 < '20041031') && !bModif2) {
				hours2 = hours2;
		}
		
		bModif2 = false;
		
		if (ladate2 == '20041031' && hours2 < 3) {
				bModif2 = true;
				hours2 = hours2 ;
		}
		/* heure d'hiver */
		if ((ladate2 >= '20041031') && (ladate2 < '20050327') && !bModif2) {
				hours2 = hours2 - 1;
		} 
		
		bModif2 = false;
		
		if (ladate2 == '20050327' && hours2 < 2) {
				bModif2 = true;
				hours2 = hours2 - 1;
		}
		/* heure d'ete */
		if ((ladate2 >= '20050327') && (ladate2 < '20041031') && !bModif2) {
				hours2 = hours2;
		}
		
		bModif2 = false;
		
		if (ladate2 == '20041031' && hours2 < 3) {
				bModif2 = true;
				hours2 = hours2 ;
		}	
		
			
		/* heure d'ete 2005 */
		if ((ladate2 >= '20051031') && (ladate2 < '20060327') && !bModif2) {
				hours2 = hours2 - 1;
		}
		
		bModif2 = false;
		
		if (ladate2 == '20060327' && hours2 < 3) {
				bModif2 = true;
				hours2 = hours2 ;
		}
		
		
		/* heure d'ete 2006 */
		if ((ladate2 >= '20060328') && (ladate2 < '20061031') && !bModif2) {
				hours2 = hours2;
		}
		
		bModif2 = false;
		
		if (ladate2 == '20061031' && hours2 < 3) {
				bModif2 = true;
				hours2 = hours2 ;
		}
		/* heure d'hiver 2007 */
		if ((ladate2 >= '20061031') && (ladate2 < '20070327') && !bModif2) {
				hours2 = hours2 - 1;
		} 
		
		bModif2 = false;
		
		if (ladate2 == '20070327' && hours2 < 2) {
				bModif2 = true;
				hours2 = hours2 - 1;
		}
		
		if (my12_hour2) {
			dn2 = "am";
			if (hours2 == 12) {dn2 = "pm"; }
			if (hours2 == 0) { hours2 = 12; }
			if (hours2 == 24) { hours2 = 0; }
			if (hours2 > 12) { dn2 = "pm"; hours2 = hours2 - 12; }
		} else {
			dn2 = "";
		}
		if (minutes2 <= 9) { minutes2 = "0"+minutes2; }
		if (seconds2 <= 9) { seconds2 = "0"+seconds2; }

		myclock2 = '';
		myclock2 += '<font color="'+myfont_color2+'" face="'+myfont_face2+'" size="0">' + hours2+':'+minutes2+':'+seconds2+'&nbsp;'+dn2;
		myclock2 += '</font>';
		
		if (old2 == "true") {		
			document.write(myclock2);
			old2 = "die"; return;	
		}
		
		if (document.layers) {
			clockpos2 = document.ClockPosNS2;
			liveclock2 = clockpos2.document.LiveClockNS2;
			liveclock2.document.write(myclock2);
			liveclock2.document.close();
		} else if (document.all) {
			LiveClockIE2.innerHTML = myclock2;
		} else if (document.getElementById) {
			document.getElementById("LiveClockIE2").innerHTML = myclock2;
		}

		setTimeout("show_clock2()",1000);
}
