/*
############################################################
##
##	INFOBULLE
##
############################################################
*/

if (navigator.appName != 'Microsoft Internet Explorer')
{
	document.captureEvents(Event.MOUSEMOVE)
}

function moveInfoBulle(e)
{
	if (navigator.appName != 'Microsoft Internet Explorer')
	{		
		var x = e.pageX;
		var y = e.pageY;
		
		document.getElementById('infobulle').style.left = (x+10) + 'px';
		document.getElementById('infobulle').style.top = (y+10) + 'px';
	}
	else
	{
		var x = event.x + document.body.scrollLeft;
		var y = event.y + document.body.scrollTop;
		
		document.getElementById('infobulle').style.left = (x+10) + 'px';
		document.getElementById('infobulle').style.top = (y+10) + 'px';
	}
}
				
function showInfoBulle(html, height, width)
{
	document.getElementById('infobulle').style.visibility = 'visible';
	document.getElementById('infobulle').style.height = height + 'px';
	document.getElementById('infobulle').style.width = width + 'px';
	document.getElementById('infobulle').innerHTML = html;
}

function displayInfoBulle()
{
	document.getElementById('infobulle').innerHTML = '';
	document.getElementById('infobulle').style.visibility = 'hidden';
}

document.onmousemove = moveInfoBulle;
