function openBild(name,imageName,imageWidth,imageHeight) {
	 var breite = screen.width;
	 var hoehe = screen.height;
	 var pos_x = (breite/2)-(imageWidth/2);
	 var pos_y = (hoehe/2)-(imageHeight/2);
	 
         newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+pos_x+",top="+pos_y+"");
         newWindow.document.open();
         newWindow.resizeTo(imageWidth,imageHeight);        
         
         newWindow.document.write('<html><title>KKV Galerie '+name+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
         newWindow.document.write('<img src=\"'+imageName+'\" alt=\"schliessen\" onClick=\"javascript:self.close()\">');
         newWindow.document.write('</body></html>');         
         newWindow.document.close();             
         newWindow.focus()
};