
//Funktion öffnet ein neues Fenster (Größe variabel)
var faux = null;
function BildGross(title, filename, width, height) {
	if(faux != null && !faux.closed) {
		 faux.close();  	
	}
	faux = window.open("","New","top=20,left=20,width=" + width + ",height=" + height + "dependent,resizable");
	var fd = faux.document;
	fd.open();
	fd.write('<html><head><title>' + title + '</title></head>');
	fd.write('<body bgcolor="#000000" onLoad="window.focus()" topmargin="0" leftmargin="0">');
	fd.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">');
	fd.write('<tr><td align="center" valign="middle"><img src="' + filename + '"></td></tr>');
	fd.write('</table></body></html>');
	fd.close();
}



