function myWindowOpener(image) {
	myWindow = window.open(image, 'Foto', 'width=500,height=333,location=no,scrollbars=no,status=no,menubar=no,toolbar=no');
	myWindow.document.write('<html><head><title>Foto</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
      	myWindow.document.write('<A HREF="javascript:window.close();" ALT="Fenster schließen"><img src="'+image+'" BORDER="0" ALT="Foto"></A>');
      	myWindow.document.write('</body></html>');
	myWindow.moveTo(100,100);
	myWindow.resizeTo(500,333);
	}
