<!--
tt = null;
document.onmousemove = tooltip;

function tooltip(ttid) {
	x = (document.all) ? window.event.x+document.body.scrollLeft : ttid.pageX;
	y = (document.all) ? window.event.y+document.body.scrollTop : ttid.pageY;
	fensterh = (document.all) ? document.all.Body.offsetHeight : window.innerHeight ;
	if (y>(fensterh-140)) ypos=-140;
	else ypos=20;

	if (tt!=null) {
		tt.style.left = (x-160) + "px";
		tt.style.top = (y+ypos) + "px";
	}
}

function showtooltip(ttid) {
	if (tt!=null) tt.style.display = "none";
	tt = document.getElementById(ttid);
	tooltip(ttid);
	tt.style.display = "block"
}

function hidetooltip() {
	tt.style.display = "none";
}
//-->
