<!--
wmtt = null;
wmtt2 = null;

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 - 5) + "px";
		wmtt.style.top 	= 416 + "px";
			}
}

function on(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block";
}

function off() {
	wmtt.style.display = "none";
}
 
function on2(id) {
	wmtt2 = document.getElementById(id);
	wmtt2.style.display = "block";
}

function off2() {
	wmtt2.style.display = "none";
}
//-->
<!--
containPos = null;

function updateDiv(e) {
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (containPos != null) {
		containPos.style.left = (y-800/2) + "px";
	}
}
//-->