// <!--
function PopUPCentreMitScroll( breite,hoehe,id) {

var Ypop=screen.availHeight;
var Xpop=screen.availWidth;

Ypop = Math.round(Ypop/2)-300;
Xpop = Math.round(Xpop/2)-315;

url = "/de/APplus/screenshot.asp?id="+id;
StrOpen="source=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width="+breite+",height="+hoehe+",left="+Xpop+",top="+Ypop+",screenX="+Xpop+",screenY="+Ypop;

popupWindow = window.open(url, "DetFen", StrOpen);

if (popupWindow)
 {
 if (popupWindow.focus)
   {
    popupWindow.focus();
 	}
 }
}


//-->