<!--
soa = null;
document.onmousemove = updateTOOLT;
function updateTOOLT(e) {
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (soa != null) {
		soa.style.left = (x + 0) + "px";//war (X + 10)
		soa.style.top 	= (y +10) + "px";
	}
}

function showTOOLT(id) {
	soa = document.getElementById(id);
	soa.style.display = "block"
}

function hideTOOLT() {
	soa.style.display = "none";

}

//-->
