<!--
wmtt = null;
wBW  = 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.scrollTop  : e.pageY;
	if (wmtt != null) {
		wmtt.style.left = (x - 50) + "px";
		wmtt.style.top 	= (y + 25) + "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(id) {
	if(document.getElementById)
	document.getElementById("nojava").style.visibility = "hidden";
	document.getElementById("yesjava").style.visibility = "visible";
}
function showBW(id) {
	x=window.innerWidth / 2;
	y=window.innerHeight / 2;
	wBW = document.getElementById(id);
	wBW.style.display = "block"
	wBW.style.left = (x - 100) + "px";
	wBW.style.top 	= (y - 30) + "px";
}
function hideBW(id) {
	wBW = document.getElementById(id);
	wBW.style.display = "none";
}
//-->
