// JavaScript Document
function mauspos(e){
	mausX=(document.all)? window.event.x+document.body.scrollLeft:e.pageX;
	mausY=(document.all)? window.event.y+document.body.scrollTop:e.pageY;
}
document.onmousemove=mauspos;

function einblenden(ttID){
	var tip=document.getElementById(ttID);
	tip.style.position="absolute";
	tip.style.left=mausX+"px";
	tip.style.top=mausY+"px";
	tip.style.display="block";
	}
function ausblenden(ttID){
	var tip=document.getElementById(ttID);
	tip.style.display="none";
}
