function neu(pic,xxx,yyy){
        var temp = new Image();
        temp.src = pic;
        var head = "<html><head><title>Bildansicht<\/title><\/head><body leftmargin=0 marginheight=0 marginwidth=0 topmargin=0>";
        var foot = "<\/body><\/html>";
        
        var newWindow = window.open('#','headline','scrollbars=no,height='+xxx+'px,width='+yyy+'px');
        with(newWindow.document){
          open();
          write(head+'<img src="'+pic+'" onClick="self.close()">'+foot);
          close();
        }
}