	var myfont_face5 = "Arial";
	var myfont_size5 = "10";
	var myfont_color5 = "#6390A7";
	var myback_color5 = "#FFFFFF";
	var mywidth5 = 65;
	var my12_hour5 = 1;

	var dn5 = ""; var old5 = "";

	if (document.all||document.getElementById) { document.write('<span id="LiveClockIE5" style="width:'+mywidth5+'px; background-color:'+myback_color5+'"></span>'); }
	else if (document.layers) { document.write('<ilayer bgColor="'+myback_color5+'" id="ClockPosNS5"><layer width="'+mywidth5+'" id="LiveClockNS5"></layer></ilayer>'); }
	else { old5 = "true"; show_clock5(); }

	function show_clock5() {
		//show clock in NS 4
		if (document.layers)
                document.ClockPosNS5.visibility="show"
		if (old5 == "die") { return; }

		var Digital5 = new Date();
		var hours5 = Digital5.getUTCHours() -7;
		var minutes5 = Digital5.getUTCMinutes();
		var seconds5 = Digital5.getUTCSeconds();
		var jours5 = '0' + Digital5.getUTCDate();		
		jours5 = jours5.substr(jours5.length -2, 2);
		var mois5 = '0' + (Digital5.getUTCMonth() + 1);
		mois5 = mois5.substr(mois5.length -2, 2);		
		var annees5 = Digital5.getUTCFullYear();
		var ladate5 = annees5+mois5+jours5;
		
		/* heure d'ete */
		var bModif5 = false;
		if (ladate5 < '20021027') {
			hours5 = hours5;
		}
		if (ladate5 == '20021027' && hours5 < 3) {
			bModif5 = true;
			hours5 = hours5;
		}
		/* heure d'hiver */
		if ((ladate5 >= '20021027') && (ladate5 < '20030330') && !bModif5) {
				hours5 = hours5 - 1;
		}
		
		bModif5 = false;
		
		if (ladate5 == '20030330' && hours5 < 2) {
				bModif5 = true;
				hours5 = hours5 - 1;
		}
		
		/* heure d'ete */
		if ((ladate5 >= '20030330') && (ladate5 < '20031026') && !bModif5) {
				hours5 = hours5;
		}
		
		bModif5 = false;
		
		if (ladate5 == '20031026' && hours5 < 3) {
				bModif5 = true;
				hours5 = hours5 ;
		}
		/* heure d'hiver */
		if ((ladate5 >= '20031026') && (ladate5 < '20040328') && !bModif5) {
				hours5 = hours5 - 1;
		}
		
		bModif5 = false;
		
		if (ladate5 == '20040328' && hours5 < 2) {
				bModif5 = true;
				hours5 = hours5 - 1;
		}	
		/* heure d'ete */
		if ((ladate5 >= '20040328') && (ladate5 < '20041031') && !bModif5) {
				hours5 = hours5;
		}
		
		bModif5 = false;
		
		if (ladate5 == '20041031' && hours5 < 3) {
				bModif5 = true;
				hours5 = hours5 ;
		}
		/* heure d'hiver */
		if ((ladate5 >= '20041031') && (ladate5 < '20050327') && !bModif5) {
				hours5 = hours5 - 1;
		} 
		
		bModif5 = false;
		
		if (ladate5 == '20050327' && hours5 < 2) {
				bModif5 = true;
				hours5 = hours5 - 1;
		}
		/* heure d'ete */
		if ((ladate5 >= '20050327') && (ladate5 < '20041031') && !bModif5) {
				hours5 = hours5;
		}
		
		bModif5 = false;
		
		if (ladate5 == '20041031' && hours5 < 3) {
				bModif5 = true;
				hours5 = hours5 ;
		}	
		
			
		/* heure d'ete 2005 */
		if ((ladate5 >= '20051031') && (ladate5 < '20060327') && !bModif5) {
				hours5 = hours5 - 1;
		}
		
		bModif5 = false;
		
		if (ladate5 == '20060327' && hours5 < 3) {
				bModif5 = true;
				hours5 = hours5 ;
		}
		
		
		/* heure d'ete 2006 */
		if ((ladate5 >= '20060328') && (ladate5 < '20061031') && !bModif5) {
				hours5 = hours5;
		}
		
		bModif5 = false;
		
		if (ladate5 == '20061031' && hours5 < 3) {
				bModif5 = true;
				hours5 = hours5 ;
		}
		/* heure d'hiver 2007 */
		if ((ladate5 >= '20061031') && (ladate5 < '20070327') && !bModif5) {
				hours5 = hours5 - 1;
		} 
		
		bModif5 = false;
		
		if (ladate5 == '20070327' && hours5 < 2) {
				bModif5 = true;
				hours5 = hours5 - 1;
		}
		
		if (my12_hour5) {
			dn5 = "am";
			if (hours5 == 12) {dn5 = "pm"; }
			if (hours5 == 0) { hours5 = 12; }
			if (hours5 == 24) { hours5 = 0; }
			if (hours5 > 12) { dn5 = "pm"; hours5 = hours5 - 12; }
		} else {
			dn5 = "";
		}
		if (minutes5 <= 9) { minutes5 = "0"+minutes5; }
		if (seconds5 <= 9) { seconds5 = "0"+seconds5; }

		myclock5 = '';
		myclock5 += '<font color="'+myfont_color5+'" face="'+myfont_face5+'" size="0">' + hours5+':'+minutes5+':'+seconds5+'&nbsp;'+dn5;
		myclock5 += '</font>';
		
		if (old5 == "true") {		
			document.write(myclock5);
			old5 = "die"; return;	
		}
		
		if (document.layers) {
			clockpos5 = document.ClockPosNS5;
			liveclock5 = clockpos5.document.LiveClockNS5;
			liveclock5.document.write(myclock5);
			liveclock5.document.close();
		} else if (document.all) {
			LiveClockIE5.innerHTML = myclock5;
		} else if (document.getElementById) {
			document.getElementById("LiveClockIE5").innerHTML = myclock5;
		}

		setTimeout("show_clock5()",1000);
}
