<!--
function show_info_box(id, str, e)
{
	var box, posx, posy;

	if (!document.all)
	{
		posx = e.pageX + 10;
		posy = e.pageY + 10;
	}
	else
	{
		posx = event.x + 210;
		posy = event.y + 150;
	}

	box = document.getElementById(id);
	box.innerHTML = str;
	box.style.top = posy + "px";
	box.style.left = posx + "px";
	box.style.display = "block";
	box.style.visibility = "visible";
}

function hide_info_box(id)
{
	var box;

	box = document.getElementById(id);
	box.style.display = "none";
	box.style.visibility = "hidden";
}
//-->
