<!--
wmtt = 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.scrollBottom  : e.pageY;
	if (wmtt != null) {
		wmtt.style.left = (x + 5) + "px";
		wmtt.style.top = (y - 300) + "px";
	}
}

function showWMTT(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block"
}

function hideWMTT() {
	wmtt.style.display = "none";
}
function apf() {
	fenster= window.open("user_admin/login.php","zweitfenster","width=800,height=605,scrollbars=yes,resizable");
	fenster.focus();
}
function shownojava() {
	if(document.getElementById)
	document.getElementById("yesjava").style.visibility = "visible";
}
//-->

