<!--
wmtt = null;

document.onmousemove = mh_update_tooltip;

function mh_update_tooltip(e) {
	//x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	//y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	try 
	{
		x = Event.pointerX(e);
		y = Event.pointerY(e);
		
		if (wmtt != null) {
			wmtt.style.left = (x + 20) + "px";
			wmtt.style.top 	= (y + 20) + "px";
		}
	} catch(e)
	{
	}
}


function show_tooltip(id) {
	try 
	{
		wmtt = document.getElementById(id);
		wmtt.style.display = "block";
	} catch(e)
	{
	}
}

function hide_tooltip() {
	try
	{
		wmtt.style.display = "none";
	} catch(e)
	{
	}
}
//-->
