<!-- SCRIPT INFO-BULLES -->
	var TimeOut = null;
	var ReverseW = false;
	function ShowHelp( strTitre, strIcone, strTexte){
	ReverseW=false;
	X = (event.x + document.body.scrollLeft);
	Y = (event.y + document.body.scrollTop);
	X_MAX = (screen.availWidth + document.body.scrollLeft);
	Y_MAX = (screen.availHeight + document.body.scrollTop);
	
	if((X-9+385)>X_MAX) {X-=385;ReverseW=true;}
	if((Y+10+89)>Y_MAX) {Y-=89;}

		TimeOut = setTimeout("ShowHelpBubble('" + strTitre + "', '" + strIcone + "', '" + strTexte + "', " + X + ", " + Y + ")", 100 );
	
	}
		
	function ShowHelpBubble( strTitre, strIcone, strTexte, X, Y ){
		var Hlp = document.all.Help;
		if(ReverseW) var strHelp = "<table Id = 'HelpTable' cellspacing = 0 cellpadding = 0 border = 0><TR><TD width='9' height='27'><img src='../../0/Bule_HG.gif' border='0' width='10' height='27' alt=''></td><td width='305' height='27'><img src='../../0/Bulle_HC_ReverseW.gif' border='0' width='306' height='27' alt=''></td><td width='9' height='27'><img src='../../0/Bulle_HD.gif' border='0' width='9' height='27' alt=''></td></tr>";
		else var strHelp = "<table Id = 'HelpTable' cellspacing = 0 cellpadding = 0 border = 0><TR><TD width='9' height='27'><img src='../../0/Bule_HG.gif' border='0' width='10' height='27' alt=''></td><td width='305' height='27'><img src='../../0/Bulle_HC.gif' border='0' width='306' height='27' alt=''></td><td width='9' height='27'><img src='../../0/Bulle_HD.gif' border='0' width='9' height='27' alt=''></td></tr>";
		
		if( strTitre != "" ) strHelp += "<TR align='left' valign='middle'><TD WIDTH='9' style='background: url(../../0/Bulle_CG.gif)'></td><td style='background: #FBFFD9; font: normal  15; font-family: Tahoma' width='304' height='30'><img src='" + strIcone + "' border='0' width='15' height='15' alt=''> <B>" + strTitre + "</B></td><td WIDTH = '9' style='background: url(../../0/Bulle_CD.gif)'></td></tr>";
		strHelp += "<TR><TD WIDTH='9' style='background: url(../../0/Bulle_CG.gif)'></td><td style='background: #FBFFD9; font-family: Arial; font: 12' width='304'>" + strTexte + "</td><td WIDTH = '9' style='background: url(../../0/Bulle_CD.gif)'></td></tr>";
		strHelp += "<TR><TD width='9' height='9'><img src='../../0/Bulle_BG.gif' border='0' width='10' height='9' alt=''></td><td width='305' height='9'><img src='../../0/Bulle_BC.gif' border='0' width='306' height='9' alt=''></td><td width='9' height='9'><img src='../../0/Bulle_BD.gif' border='0' width='9' height='9' alt=''></td></tr></table>";
		Hlp.innerHTML = strHelp;
		
		Hlp.style.display = "";
		Hlp.style.left = X - 9;
		Hlp.style.top = Y + 10;

		setOpacity(1);
		
	}
	
	function setOpacity(intOpac){
		var Hlp = document.all.Help;
		
		intOpac = intOpac + 8;
		Hlp.filters.alpha.opacity = intOpac;
		if( intOpac != 0 && intOpac < 85 ){
			setTimeout("setOpacity(" + intOpac + ")", 5);
		}
	}
	
	function HideHelp(){
		var Hlp = document.all.Help;
		if( TimeOut != null ) clearTimeout(TimeOut);
		Hlp.style.display = "none";
		
	//	Hlp.filters.alpha.opacity = 0;
	}

