function fenster(path,x,w,h,legende){
	if(legende){
		var nh = h += 20;
	}else{
		var nh = h;
	}
	var win = window.open("about:blank","Bild","toolbar=no,width=" + w + ",height=" + nh + ",directories=no,status=no,scrollbars=no,resizable=no,screenX=300,screenY=200,menubar=no");
		win.document.open();
		win.document.writeln('<HTML><HEAD><TITLE>[ ' + x + ' ]</TITLE></HEAD><BODY BGCOLOR="White" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" ONBLUR="self.close();"><CENTER><IMG SRC="'+ path + x + '" BORDER=0>');  
		if(legende){
			win.document.writeln('<br><I><FONT FACE="Arial" SIZE="2">' + x + ':  ' + w + 'x' + h + 'Pixel</I>');
		}
		win.document.writeln('</CENTER></BODY></HTML>');
		win.document.close();
}
