function openPicture(imageName,imageWidth,imageHeight) { 
	newWindow = window.open("popup.htm","popup","Width="+imageWidth+",Height="+imageHeight+",scrollbars=no,left=100,top=20");
	newWindow.document.open();
				
	newWindow.document.write('<html><head><title>gro&szlig;e Ansicht</title></head><body bgcolor="#000000" style="padding:0px; margin:0px; border:0px;">'); 
	newWindow.document.write('<a href="javascript:close();"><img src="'+imageName+'" alt="gro&szlig;e Ansicht" border="0"></a>'); 	
	newWindow.document.write('</body></html>');
				
	newWindow.document.close();
	newWindow.focus();
}
