function MM_openBrWindow(theURL,winName,features) { //v2.0
  w = window.open('',winName,features);
  w.document.open();
  w.document.writeln('<html><head><title>Detail</title><style type=\"text/css\">body{margin:0;padding:0}</style></head>');
  w.document.writeln('<body><img src=\"' + theURL + '\" onclick=\"window.close();\" alt=\"\" title=\"Kliknutím zavřete okno\" /></body></html>');
  w.document.close();
}