function fotofenster(bildpfad, bildtitel) {
var fensterX = (screen.width - 960)/2;
var fensterY = (screen.height - 720)/2 -30;
var fenstertyp ="width=960, height=720, top=" + fensterY +", left=" + fensterX;
var fenster = window.open("", "", fenstertyp);
	with(fenster.document) {
	// Mit Dokumenttypangabe zeigt Mozilla unerwünschte Scrollbalken an
	// writeln("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtmll/DTD/xhtmll-strict.dtd\">");
	writeln("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
     writeln("<head><title>"+ bildtitel + "</title></head>");
     writeln("<body style=\"margin:0;background-color:#ffffff\">");
	writeln("<div><img src=\"" + bildpfad +"\" width=\"960\" height=\"720\" alt=\"" + bildtitel + "\" title=\"" + bildtitel + "\"/></div>");
     writeln("</body>");
	writeln("</html>");
	}
	fenster.focus();
}

