function image_rubrique(e, img, p1, p2, p3, p4, p5, p6){
	var x, y;
	var str;
	if (!e)  var e = window.event; 

	if (e.pageX || e.pageY) {
		x = e.pageX;
		y = e.pageY;
	}
	else if (e.clientX || e.clientY) {
		x = e.clientX + document.body.scrollLeft;
		y = e.clientY + document.body.scrollTop;
	}
	document.getElementById("img_rubrique").style.display = "block";
	document.getElementById("img_rubrique").style.top = y+20;
	document.getElementById("img_rubrique").style.left = x+9;
	document.getElementById("img_rubrique").style.backgroundImage='url(/images/produits/'+img+')';
	if ( p1 != '' ) {
		str = "<p align=\"center\" style=\"color:#777777; font-size:9px; margin-top:240px; margin-bottom:5px;\">"+p1+" : <font style=\"color:#8D0A62;\">"+p2+" &euro;</font>";
	}
	if ( p3 != '' ) {
		str += "<br />"+p3+" : <font style=\"color:#8D0A62;\">"+p4+" &euro;</font>";
	}	
	if ( p5 != '' ) {
		str += "<br />"+p5+" : <font style=\"color:#8D0A62;\">"+p6+" &euro;</font>";
	}
	if ( p1 != '') { str += "</p>"; }
	document.getElementById("img_rubrique").innerHTML = str;
}

function image_rubrique2(img) {
	document.getElementById("img_rubrique").style.display = "none";
}