AktMausX=200;
AktMausY=200;
if (document.layers)
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = function (evt) {
  if (document.all)
	{
   AktMausX=event.screenX;
	AktMausY=event.screenY;
	}
  else if (document.layers)
	{
   AktMausX=evt.pageX;
	AktMausY=evt.pageY;
	}
  else
	{
   AktMausX=evt.screenX;
	AktMausY=evt.screenY;
	}
}

function sf_openPDFHinweis()
	{
	if (AktMausX>110) AktMausX -= 100;
	if (AktMausX>60) AktMausY -= 50;
	window.open("../pdf-hinweis.php", "PDFHinweis", 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=300,height=160,top='+AktMausY+',left='+AktMausX);
	}