//
// {{{ infobulle()
// http://www.asp-magazine.com/fr/javascript/exemples/tr2.htm
// http://msdn.microsoft.com/library/default.asp?url=/workshop/author/om/measuring.asp
//

function view_infobulle(theLayer)
{
	document.all[theLayer].style.pixelLeft= event.clientX+document.body.scrollLeft+10;
	document.all[theLayer].style.pixelTop= event.clientY+document.body.scrollTop+10;
	document.all[theLayer].style.visibility="visible"
}

function hide_infobulle(theLayer)
{
	document.all[theLayer].style.visibility="hidden"
}
