var ToolTip = null;
	
document.onmousemove = uaktualnijTT;

function uaktualnijTT(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 - 100) + "px";
		ToolTip.style.top 	= (y + 20) + "px";
	}
}	
	
function ShowTT (id) {
	ToolTip = document.getElementById(id);
	ToolTip.style.visibility='visible';		
	return (true);
}

function HideTT () {
	ToolTip.style.visibility='hidden';
	ToolTip = null;
	return (true);
}

