	var myfont_face3 = "Arial";
	var myfont_size3 = "10";
	var myfont_color3 = "#6390A7";
	var myback_color3 = "#FFFFFF";
	var mywidth3 = 65;
	var my12_hour3 = 1;

	var dn3 = ""; var old3 = "";

	if (document.all||document.getElementById) { document.write('<span id="LiveClockIE3" style="width:'+mywidth3+'px; background-color:'+myback_color3+'"></span>'); }
	else if (document.layers) { document.write('<ilayer bgColor="'+myback_color3+'" id="ClockPosNS3"><layer width="'+mywidth3+'" id="LiveClockNS3"></layer></ilayer>'); }
	else { old3 = "true"; show_clock3(); }

	function show_clock3() {
		//show clock in NS 4
		if (document.layers)
                document.ClockPosNS3.visibility="show"
		if (old3 == "die") { return; }

		var Digital3 = new Date();
		var hours3 = Digital3.getUTCHours() - 4;
		var minutes3 = Digital3.getUTCMinutes();
		var seconds3 = Digital3.getUTCSeconds();
		var jours3 = '0' + Digital3.getUTCDate();		
		jours3 = jours3.substr(jours3.length -2, 2);
		var mois3 = '0' + (Digital3.getUTCMonth() + 1);
		mois3 = mois3.substr(mois3.length -2, 2);		
		var annees3 = Digital3.getUTCFullYear();
		var ladate3 = annees3+mois3+jours3;
		
		/* heure d'ete */
		var bModif3 = false;
		if (ladate3 < '20021027') {
			hours3 = hours3;
		}
		if (ladate3 == '20021027' && hours3 < 3) {
			bModif3 = true;
			hours3 = hours3;
		}
		/* heure d'hiver */
		if ((ladate3 >= '20021027') && (ladate3 < '20030330') && !bModif3) {
				hours3 = hours3 - 1;
		}
		
		bModif3 = false;
		
		if (ladate3 == '20030330' && hours3 < 2) {
				bModif3 = true;
				hours3 = hours3 - 1;
		}
		
		/* heure d'ete */
		if ((ladate3 >= '20030330') && (ladate3 < '20031026') && !bModif3) {
				hours3 = hours3;
		}
		
		bModif3 = false;
		
		if (ladate3 == '20031026' && hours3 < 3) {
				bModif3 = true;
				hours3 = hours3 ;
		}
		/* heure d'hiver */
		if ((ladate3 >= '20031026') && (ladate3 < '20040328') && !bModif3) {
				hours3 = hours3 - 1;
		}
		
		bModif3 = false;
		
		if (ladate3 == '20040328' && hours3 < 2) {
				bModif3 = true;
				hours3 = hours3 - 1;
		}	
		/* heure d'ete */
		if ((ladate3 >= '20040328') && (ladate3 < '20041031') && !bModif3) {
				hours3 = hours3;
		}
		
		bModif3 = false;
		
		if (ladate3 == '20041031' && hours3 < 3) {
				bModif3 = true;
				hours3 = hours3 ;
		}
		/* heure d'hiver */
		if ((ladate3 >= '20041031') && (ladate3 < '20050327') && !bModif3) {
				hours3 = hours3 - 1;
		} 
		
		bModif3 = false;
		
		if (ladate3 == '20050327' && hours3 < 2) {
				bModif3 = true;
				hours3 = hours3 - 1;
		}
		/* heure d'ete */
		if ((ladate3 >= '20050327') && (ladate3 < '20041031') && !bModif3) {
				hours3 = hours3;
		}
		
		bModif3 = false;
		
		if (ladate3 == '20041031' && hours3 < 3) {
				bModif3 = true;
				hours3 = hours3 ;
		}	
		
			
		/* heure d'ete 2005 */
		if ((ladate3 >= '20051031') && (ladate3 < '20060327') && !bModif3) {
				hours3 = hours3 - 1;
		}
		
		bModif = false;
		
		if (ladate3 == '20060327' && hours3 < 3) {
				bModif3 = true;
				hours3 = hours3 ;
		}
		
		/* heure d'ete 2006 */
		if ((ladate3 >= '20060328') && (ladate3 < '20061031') && !bModif3) {
				hours3 = hours3;
		}
		
		bModif3 = false;
		
		if (ladate3 == '20061031' && hours3 < 3) {
				bModif3 = true;
				hours3 = hours3 ;
		}
		/* heure d'hiver 2007 */
		if ((ladate3 >= '20061031') && (ladate3 < '20070327') && !bModif3) {
				hours3 = hours3 - 1;
		} 
		
		bModif3 = false;
		
		if (ladate3 == '20070327' && hours3 < 2) {
				bModif3 = true;
				hours3 = hours3 - 1;
		}
		
		
		if (my12_hour3) {
			dn3 = "am";
			if (hours3 == 12) {dn3 = "pm"; }
			if (hours3 == 0) { hours3 = 12; }
			if (hours3 == 24) { hours3 = 0; }
			if (hours3 > 12) { dn3 = "pm"; hours3 = hours3 - 12; }
		} else {
			dn3 = "";
		}
		if (minutes3 <= 9) { minutes3 = "0"+minutes3; }
		if (seconds3 <= 9) { seconds3 = "0"+seconds3; }

		myclock3 = '';
		myclock3 += '<font color="'+myfont_color3+'" face="'+myfont_face3+'" size="0">' + hours3+':'+minutes3+':'+seconds3+'&nbsp;'+dn3;
		myclock3 += '</font>';
		
		if (old3 == "true") {		
			document.write(myclock3);
			old3 = "die"; return;	
		}
		
		if (document.layers) {
			clockpos3 = document.ClockPosNS3;
			liveclock3 = clockpos3.document.LiveClockNS3;
			liveclock3.document.write(myclock3);
			liveclock3.document.close();
		} else if (document.all) {
			LiveClockIE3.innerHTML = myclock3;
		} else if (document.getElementById) {
			document.getElementById("LiveClockIE3").innerHTML = myclock3;
		}

		setTimeout("show_clock3()",1000);
}

