function showEvents(list, location)
{
	var top = location.offsetHeight + location.offsetTop + location.offsetParent.offsetTop;
	var left = location.offsetLeft + location.offsetParent.offsetLeft + 1;
	var i;
	var popupBody = "";

	for (i=0; i < list.length; i++)
		popupBody += "<img src='imgs/elenco.png'> " + list[i][0] + " - <a href='" + list[i][2] + "'>" + list[i][1] + "</a><br>";
	popupBody = popupBody.substr(0, popupBody.length - 4);

	$("#pop_body").html(popupBody);
	$("#pop_eve").css("display", "block");
	$("#pop_eve").css("top", top + "px");
	$("#pop_eve").css("left", left + "px");
}

function hideEvents()
{
	$("#pop_eve").css("display", "none");
}
