
function CreatElem(Id, Longueur, Message) //Si Longueur==0 alors l'info bulle sera automatiquement dimension en fonction de la longeur du message ;)
{
	var MonStyle = "STYLE='{filter:alpha(opacity=100); position: absolute; visibility: hidden; left: 0; top: 0; font-family: Verdana, Arial; font-size: 11px; color: #162CAA;border-width: 2; border-color: #C8DBF0; border-style: dashed; padding: 3; background-color: #FFFAD3; width: "   
	MonStyle += (Longueur == 0)? "'}"  : Longueur + "'}";
	document.write("<DIV align='justify' width='" + Longueur + "' ID='" + Id + "' " + MonStyle + ">" + Message + "</DIV>");
}

function RendElemVisible(Id)
{
	var Elem =  document.all[Id].style;
	Elem.left = event.clientX + 30 + document.body.scrollLeft;
	Elem.top = event.clientY + 5 + document.body.scrollTop;
	Elem.visibility =  "visible";
}

function RendElemInvisible(Id) 
{
	var Elem =  document.all[Id].style;
	document.all[Id].style.visibility =  "hidden";
	Elem.left = 0;
	Elem.top = 0;
}
