function popup(source, name, weite, hoehe){
	var hoehe_fenster = hoehe + 40;

	newWindow = window.open("", name, "width=" + weite + ", height=" + hoehe_fenster + ", left=50, top=50");

	newWindow.document.open();
	newWindow.document.write('<html>\n\t<head>\n\t\t<title>' + name + '</title>\n\n\t\t<link rel=stylesheet type="text/css" href="../../css/body.css">\n\t</head>\n\n\t');
	newWindow.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>\n\t\t');
	newWindow.document.write('<img src="' + source + '" width=' + weite + ' height=' + hoehe + ' alt="' + name + '">\n\t\t');
	newWindow.document.write('<div align=right class="inhalt"><br><a href="javascript:self.close()" onFocus="if(this.blur)this.blur()">Fenster schlie&szlig;en</a>&nbsp;&nbsp;&nbsp;</div>\n\t');
	newWindow.document.write('</body>\n</html>\n');
	newWindow.document.close();
}

