function grossbild(bild, titel, breite, hoehe)
{
	Fenster = window.open("./script/grossbild.html",titel,"width="+breite+",height="+hoehe+",left=0,top=0, scrollbars=yes menubar=yes");
	Fenster.document.open();
	Fenster.document.write("<html> <head> <title> "+titel+" </title> </head> <body>");
	Fenster.document.write("<img src='"+bild+"'></img>");
	Fenster.document.write("</body> </html>");
	Fenster.document.close();
	Fenster.focus();
}
