/*
=======================
  affiche/cache le loading
=======================
*/
function showLoading(bool){
	if (document.getElementById && document.getElementById('attente') != null) {
		var divattente=document.getElementById('attente');
		if(bool==true){
			divattente.className="visible";
		}else{
			divattente.className="invisible";
		}
	}
}

/*
=======================
  lien sur une page, d?clenche l'attente dans un 1er temps (loading)
=======================
*/
function go(myUrl){
	showLoading(true);
	location.replace(myUrl);
}