toti = null;
document.onmousemove = updateTOTI;

function updateTOTI(e) {
	if (toti != null && toti.style.display == 'block') {
		x = (e.pageX ? e.pageX : window.event.x) + toti.offsetParent.scrollLeft - toti.offsetParent.offsetLeft;
		y = (e.pageY ? e.pageY : window.event.y) + toti.offsetParent.scrollTop - toti.offsetParent.offsetTop;
		toti.style.left = (x + 20) + "px";
		toti.style.top   = (y + 20) + "px";
	}
}
function showTOTI(id) {
	toti = document.getElementById(id);
	toti.style.display = "block";
}

function hideTOTI() {
	toti.style.display = "none";
}


