function neuesfenster_scroll(bild,titel,breite,hoehe) {
	ScreenWidth = screen.width;
	ScreenHeight = screen.height;
	
	xsize = breite;
	ysize = hoehe;
	
	xpos = (ScreenWidth/2)-(breite/2);
	ypos = (ScreenHeight/2)-(hoehe/2);
	
	NewWindow=window.open("","bild","height="+ysize+",width="+xsize+",scrollbars=yes,resizable=yes,top="+ypos+",left="+xpos+"");
	NewWindow.document.write ("<html><head><title>"+titel+"</title><META HTTP-EQUIV='imagetoolbar' CONTENT='no'></head>");
	NewWindow.document.write ("<body bgcolor='#FFFFFF' onload='focus()'>");
	NewWindow.document.write ("<table border=0 cellpadding=0 cellspacing=0 width='100%' height='100%'><tr valign='middle'><td align='center'>");
	NewWindow.document.write ("<img src=");
	NewWindow.document.write (bild);
	NewWindow.document.write (" border='0' alt=''><br>");
	NewWindow.document.write ("</td></tr>");
	NewWindow.document.write ("</table>");
	NewWindow.document.write ("</body></html>");
	NewWindow.document.close();
}
