<!--
		function newImage(arg) {
			if (document.images) {
				rslt = new Image();
				rslt.src = arg;
				return rslt;
			}
		}
		
		function openPictureWindow(imageName,alt,imageWidth,imageHeight) {  
			
			posLeft = (screen.width / 2) - (imageWidth / 2);
			posTop = (screen.height / 2) - (imageHeight / 2);
			
			newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
			newWindow.document.open();
			newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
			newWindow.document.write('<a href=\"javascript:window.close()\"><img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\" border=\"0\"></a>');
			newWindow.document.write('</body></html>');
			newWindow.document.close();
			newWindow.focus();
		}

	/*	function openPictureWindow(imageName,alt) {  
			
			//  Preload Fenster
			posLeft = (screen.width / 2) - (100);
			posTop = (screen.height / 2) - (25);
			loadWindow = window.open("","loadWindow","width=200,height=50,scrollbars=no,left="+posLeft+",top="+posTop);
			loadWindow.document.open();
			loadWindow.document.write('<html><head><title>loading...</title></head><body valign="center"><div style="font-size: 26px; font-family: Arial, sans-serif; text-align: center">Das Bild wird geladen...</div></body></html>');
			loadWindow.document.close();
			bild = newImage(imageName);
			loadWindow.window.close();
			
			// Fenster wird geöffnet
			imageWidth = bild.width;
			imageHeight = bild.height;
			posLeft = (screen.width / 2) - (imageWidth / 2);
			posTop = (screen.height / 2) - (imageHeight / 2);
			
			newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
			newWindow.document.open();
			newWindow.document.write('<html><title>-</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
			newWindow.document.write('<a href=\"javascript:window.close()\"><img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\" border=\"0\"></a>');
			newWindow.document.write('</body></html>');
			newWindow.document.close();
			newWindow.focus();
		} */
-->