var decal_x = 0;
var taille = 120;
var decal_y = 15;

if (document.getElementById)
{
	box = document.getElementById("popInfoBulle").style;
	if(navigator.appName.substring(0,3) == "Net")
		document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = pointer;
}

function myOpenPop(contenu, direction)
{
	decal_y = 15;
	var content ="<TABLE border=1 bordercolor=#0000FF cellpadding=1 cellspacing=0 bgcolor=#FFFFCC><TR><TD><font color=#0000FF><b>"+contenu+"</b></font></TD></TR></TABLE>";
	if (document.getElementById)
	{
	  	document.getElementById("popInfoBulle").innerHTML = content;
	  	box.visibility = "visible";
		if (direction == 'gauche') decal_x = -taille;
		if (direction == 'droite') decal_x = 0;
		if (direction == 'centre') decal_x = -(taille/2);
 	}
	window.status = contenu;	// Affiche le texte dans la barre d'état
}

function pointer(e)
{
	var x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
	var y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
	box.left = x + decal_x;
	box.top = y+decal_y;
}

function myClosePop()
{
	if (document.getElementById)
  		box.visibility = "hidden";
	window.status="";		// Efface le texte dans la barre d'état
}

function myOpenPopNote(contenu, direction)
{
	decal_y = 7;
	var content ="<TABLE border=1 bordercolor=#0000FF cellpadding=0 cellspacing=0 bgcolor=#FFFFCC><TR><TD><font size=-1 color=#0000FF><b>"+contenu+"</b></font></TD></TR></TABLE>";
	if (document.getElementById)
	{
	  	document.getElementById("popInfoBulle").innerHTML = content;
	  	box.visibility = "visible";
		if (direction == 'gauche') decal_x = -taille;
		if (direction == 'droite') decal_x = 0;
		if (direction == 'centre') decal_x = -(taille/2);
 	}
	window.status = contenu;	// Affiche le texte dans la barre d'état
}
