<!--
function openPic(imageName) {  // v4.01
	newWindow = window.open("","newWindow","width=420,height=320,scrollbars=yes,left=10,top=10");
	newWindow.document.open();
	newWindow.document.write('<html><title>Detailbilder</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src=\"'+imageName+'\" alt=\"Detailbilder">');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//-->
