<!--
tooltip = null;

document.onmousemove = updateToolTip;

function updateToolTip(e) {
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (tooltip != null) {
		tooltip.style.left 	= (x + 10) + "px";
		tooltip.style.top 	= (y + 10) + "px";
	}
}

function showToolTip(id) {
	tooltip = document.getElementById(id);
	tooltip.style.display = "block"
}

function hideToolTip() {
	tooltip.style.display = "none";
}
//-->
