function fAfficheInfo(sCommentaire){

	var oInfo = document.getElementById("oInfo");
	if(sCommentaire != "")
		sCommentaire = "<label class='clsVert'>"+ sCommentaire + "</label>";	
		
	sInfo 	= "<label><strong>Informations supplémentaires :</strong></label><br /><br />";
	sClick 	= "<label class='clsVert'>Survolez une ligne pour plus d'informations sur la date</label>";
	
	if(sCommentaire != "")
		sTexte = sInfo + sCommentaire;
	else
		sTexte = sInfo + sClick;
		
	oInfo.innerHTML = sTexte;
}

function fMentionLegale(){
	hauteur = 600;
	largeur = 580;
	url 	= "IHM/Principal/Mentions Legales/mentionsLegales.htm";
	haut 	= (screen.height - hauteur)/2;
	left 	= (screen.width - largeur)/2;
	params 	= "top="+ haut +", left="+ left +", width="+ largeur +", height="+ hauteur +", scrollbars=yes";
	popup 	= open(url,"",params);
	popup.focus();		
}