// JavaScript Document
wmtt = null;
 
document.onmousemove = updateWMTT;
 
function updateWMTT(e) {
  if (wmtt != null) {
    x = (document.all) ? window.event.x + wmtt.offsetParent.scrollLeft : e.pageX;
    y = (document.all) ? window.event.y + wmtt.offsetParent.scrollTop  : e.pageY;
    wmtt.style.left = (x + 20) + "px";
    wmtt.style.top   = (y ) - wmtt.offsetHeight + "px";
  }
}

function kastl_her(wasdrin) {
	if (document.getElementById) {
		wmtt = document.getElementById('popupinfo');
		wmtt.innerHTML=wasdrin;
		wmtt.style.display='block';
	}
}


function kastl_weg() {
if(document.getElementById) {
document.getElementById('popupinfo').style.display='none';
document.getElementById('popupinfo').innerHTML='';
}
}

