function showImage(imgURL,Title) {
  var win, html;
  html = '';
  win = open('', '_blank', 'width=240, height=180, resizable=yes, menubar=no, location=no, toolbar=no, statusbar=no');
  html += '<!DOCTYPE HTML PUBLIC "-\/\/W3C\/\/DTD HTML 4.01 Transitional\/\/EN" "http:\/\/www.w3.org\/TR\/html4\/loose.dtd">\n\n';
  html += '<html>\n<head>\n';
  html += '<meta http-equiv="Content-Type" content="text\/html; charset=ISO-8859-1">\n';
  html += '<meta http-equiv="Content-Script-Type" content="text\/javascript">\n';
  html += '<meta http-equiv="Content-Style-Type" content="text\/css">\n';
  html += '<meta name="robots" content="noindex">\n';
  html += '<link media="screen,projection" rel="stylesheet" type="text\/css" href="misc\/styles.css">\n';
  html += '<script language="javascript" type="text\/javascript">\n';
  html += '  function WindowResize() {\n';
  html += '    var width, height;\n';
  html += '    if(self.document.picture.complete==true) {\n';
  html += '      width=self.document.picture.width;\n';
  html += '      height=self.document.picture.height;\n';
  html += '      if (width>0 && height>0) {\n';
  html += '        self.document.getElementById("loading").style.display="none";\n';
  html += '        self.resizeTo(width,height);\n';
  html += '        self.document.picture.style.visibility="visible";\n';
  html += '      } else {\n';
  html += '        setTimeout("WindowResize()",300);\n';
  html += '      }\n';
  html += '    } else {\n';
  html += '      setTimeout("WindowResize()",300);\n';
  html += '    }\n  }\n';
  html += '<\/script>\n';
  html += '<title>' + Title + '</title>\n';
  html += '<\/head>\n\n';
  html += '<body>\n';
  html += '<span id="loading" style="font-weight:bold;">Bild wird geladen</span><br>\n';
  html += '<a href="javascript:window.close();" style="position:absolute; left:0px; top:0px; padding:0px;">\n';
  html += '<img src="' + imgURL + '" alt="' + Title + '" title="' + Title + '" border="0" name="picture" style="visibility:hidden;">\n';
  html += '<\/a>\n';
  html += '<script language="javascript" type="text\/javascript">setTimeout("WindowResize()",200)<\/script>\n';
  html += '<\/body>\n<\/html>';
  win.document.open();
  win.document.write(html);
  win.document.close();
  win.focus();
}
