function zeigeBild(Bild,Breite,Hoehe) {
	var extra = "";
	if (Breite>600 || Hoehe>450)
		extra = "scrollbars=yes";
	if (Breite>600)
		Breite=600;
	if (Hoehe>450)
		Hoehe=450;

	OpenWindow(Bild, 'neuesbild', Breite, Hoehe, extra);

	ausgabe=window.Fenster_neuesbild.document;
	
	inhalt='<html><head><title>Bild</title></head><body topmargin=0 leftmargin=0 marginhigh=0 marginwidth=0><div id="groesse"><img src='+Bild+'></div></body></html>';

	ausgabe.open();
	ausgabe.write(inhalt);
	ausgabe.close();
	
	return;
}
