// JavaScript Document

<!--
wmtt = null;
wmtt_plusx = 0;
wmtt_plusy = 0;

document.onmousemove = updateWMTT;

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

function showWMTT(id,src,width,height,plusx,plusy) {
	wmtt = document.getElementById(id);
	wmtt.innerHTML = '<img src="'+src+'" border="0" width="'+width+'" height="'+height+'">';
	wmtt.style.width = "auto";
	wmtt.style.height = "auto";
	wmtt_plusx = plusx;
	wmtt_plusy = plusy;
	wmtt.style.display = "block"
	
}

function hideWMTT() {
	wmtt.style.display = "none";
}
//-->
