function mostraMessaggioHelp(obj,div)
{	
	sposta_x=28;
	if (div=="info_A" || div=="info_B" || div=="info_C")
		sposta_x = -414;
	p = ottieniCoordinateElemento(obj);
	$("#"+div).css("margin",(p.y)+"px 0 0 "+(p.x+sposta_x)+"px");
	$("#"+div).css("display","");
	//alert("x: "+p.x+"y: "+p.y);
}

function nascondiMessaggioHelp(div)
{
	$("#"+div).css("display","none");
}

function ottieniCoordinateElemento(element)
{
	var coords = {x: 0, y: 0};
	while (element)
	{
		coords.x += element.offsetLeft;
		coords.y += element.offsetTop;
		element = element.offsetParent;
	}
	return coords;
}
