function RemoteWindow(sURL,iH,iW) {
	if (navigator.appVersion.substring(0,1) == "4") {
		var abstandVonOben = (((screen.height - iH)/2));
		var abstandVonLinks = (((screen.width - iW)/2));
	}
	NewWindow = window.open(sURL,"ImageWindow","height="+iH+",width="+iW+",screenX="+abstandVonLinks+",left="+abstandVonLinks+",screenY="+abstandVonOben+",top="+abstandVonOben+",channelmode=0,dependent=1,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0");
	NewWindow.focus();
}