var timerID = null;
var timerRunning = false;

function arret (){
	if(timerRunning) clearTimeout(timerID);
	timerRunning = false;
}

function voir () {
	

	
	
	
	var now = new Date();
	
	/*var hours = now.getHours();
	var minutes = now.getMinutes();
	var seconds = now.getSeconds();*/
	
	var hours = now.getUTCHours();
	var minutes = now.getUTCMinutes();
	var seconds = now.getUTCSeconds();
	
	
	var mon_heure = hours;
	mon_heure += ((minutes < 10) ? ":0" : ":") + minutes
	mon_heure += ((seconds < 10) ? ":0" : ":") + seconds
	// Pour afficher l'heure dans la Page :
//	document.heure.face.value = mon_heure;
		document.getElementById("heure").innerHTML =  mon_heure + ' UTC';
	// Pour afficher l'heure dans la StatusBar :
	// window.status = mon_heure;
	timerID = setTimeout("voir()",1000);
	timerRunning = true;
}

function depart () {
	arret();
	voir();
}