<!--
infotip = null;
document.onmousemove = updateinfotip;


function updateinfotip(e) {
x = 0;
y = 0;
x = (document.all) ? window.event.x + document.documentElement.scrollLeft : e.pageX;
y = (document.all) ? window.event.y + document.documentElement.scrollTop : e.pageY;
if (infotip != null) {
infotip.style.left = (x + 10 ) + "px";
infotip.style.top  = (y + 10 ) + "px";
}

}

function showinfotip(id) {
infotip = document.getElementById(id);
infotip.style.display = "block"
}


function hideinfotip() {
if (infotip != null) {
infotip.style.display = "none";
}

}
//-->
