if (document.getElementById){
	box = document.getElementById("popbox").style;
	if(navigator.appName.substring(0,3) == "Net")
		document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = pointer;
	}
function poplink(contenu){
var content ="<TABLE BORDER='0' CELLPADDING='0' CELLSPACING='0'><TR><TD background='./img/infobulle_bg.gif'><TABLE WIDTH='420' height='200' CELLPADDING='0' CELLSPACING='0'><TR><td width='63'></td><TD align='right' valign='middle'><iframe src='./infobulle_"+contenu+".html' width='350' height='180' name='infobulle' frameborder='0' scrolling='no'></iframe></TD><td width='7'></td></TR></TABLE></TD></TR></TABLE>";
	if (document.getElementById)
		{
	  	document.getElementById("popbox").innerHTML =
content;
	  	box.display = "block";
  		}
		}
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+20;
	box.top = y-150;
	}
function closepopup()
	{
	if (document.getElementById)
  		box.display = "none";
	}
