function pop(uri,w,h) {
	var posW = (screen.availWidth-w) / 2;
	fenster = window.open("","Bilderschau","width="+w+",height="+h+",scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left="+posW+",top=20");
	fenster.document.open();
	fenster.document.write('<html><head><title>Bilderschau</title></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
	fenster.document.write('<img src=\"'+uri+'\" width=\"'+w+'\" height=\"'+h+'\" alt=\"\" title=\"Klicken zum Schlie&szlig;en\" onClick="self.close()" style="cursor: pointer;">');
	fenster.document.write('</body></html>');
	fenster.document.close();
	fenster.focus();
	return false;
}