function PopUpGallery(w,h,ziel) {
	
    	var p = "menubar=no,location=no,toolbar=no,status=no, resizable=yes,scrollbars=no";
   	p = "width="+w+",height="+h +","+p;
    	var Fenster = window.open("","PopUp",p);
    	Fenster.focus();
	Fenster.document.open();

	Fenster.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
	Fenster.document.writeln('<html>');
	Fenster.document.writeln('<head>');
	Fenster.document.writeln('<title>Image</title>');
	Fenster.document.writeln('</head>');
	Fenster.document.writeln('<body style="margin: 0;">');
	Fenster.document.writeln('<img id="Bild" border="0" src="'+ziel+'" />');
	
	Fenster.document.writeln('</body></html>');
	
	Fenster.document.close();
  
} 