cursor_x = 0;
cursor_y = 0;

function DefinitionDico ( id, styl )
{
	window.document.onmousemove= PositionSouris ;
	window.document.getElementById(id).style.left = cursor_x + 10 ;
	window.document.getElementById(id).style.top = cursor_y + 10 ;
	window.document.getElementById(id).style.visibility = styl ;
}



function PositionSouris(e)
{
	if (navigator.appName.substring(0,3) == "Net") 
	{
		cursor_x = e.pageX;
		cursor_y = e.pageY;
	}
	else
	{
		cursor_x = event.x+document.body.scrollLeft;
		cursor_y = event.y+document.body.scrollTop;
	}
}