var decal_x = 10;
var decal_y = 15;

document.onmousemove = suivre_souris0;
var contenu;

function pop0(contenu)
{
	document.getElementById("bulle").innerHTML = "<table class='infobulle' cellpadding='0' cellspacing='0'><tr><td>"+contenu+"</td></tr></table>";
}

function suivre_souris0(e)
{
	if (navigator.appName=="Microsoft Internet Explorer")
	{
		var x = event.x + document.body.scrollLeft;	var y = event.y + document.body.scrollTop;
	}
	else
	{
		var x =  e.pageX;var y =  e.pageY;
	}
	document.getElementById("bulle").style.left = x + decal_x; document.getElementById("bulle").style.top  = y + decal_y;
}

function disparaitre0()
{
	document.getElementById("bulle").innerHTML = '';
}




var decal_a = 20;
var decal_b = 0;

document.onmousemove = suivre_souris1;
var contenu;

function pop1(contenu)
{
	document.getElementById("bulle").innerHTML = "<table class='infoproduit' cellpadding='0' cellspacing='0'><tr><td>"+contenu+"</td></tr></table>";
}

function suivre_souris1(e)
{
	if (navigator.appName=="Microsoft Internet Explorer")
	{
		var a = event.x + document.body.scrollLeft;	
		var b = event.y + document.body.scrollTop;
	}
	else
	{
		var a =  e.pageX;
		var b =  e.pageY;
	}
	document.getElementById("bulle").style.left = a + decal_a; 
	document.getElementById("bulle").style.top  = b + decal_b;
}

function disparaitre1()
{
	document.getElementById("bulle").innerHTML = '';
}
