mytool = null;

document.onmousemove = updateXYPos;



function showToolTip(id) {



	mytool = document.getElementById(id);

	mytool.style.display = "block";

}



function hideToolTip(id) {



	mytool.style.display = "none";

}



function updateXYPos(e) {



	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;

	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;



	if (mytool != null) {

		mytool.style.left = (x + 20) + "px";

		mytool.style.top = (y + 20) + "px";

	}

}



function open_win(neueseite,breite,hoehe)

{

fenster = window.open(neueseite,"fensterhoch","width="+breite+",height="+hoehe+",resizable=true");

fenster.focus( );

}

function closeMe( )

{

close( )

}



function open_rundbrief(rundbrief)

{

fenster = window.open(rundbrief,'mywindow','width=540,height=700,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');

fenster.focus()

}

	