<!--
  function ShowGallery(img) {
        
        var NewWin = window.open("","Gallery","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,top=0,left=0");
        with (NewWin.document) {
          write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
          write('<html xmlns="http://www.w3.org/1999/xhtml" lang="sk" xml:lang="en">');
          write('<head><title>Gallery</title><link rel="stylesheet" type="text/css" href="style/gallery.css" /></head><body onload="javascript:window.resizeTo(photo.width+15, photo.height+78);">');
          write('<a href="javascript:close();" title="Kliknutím okno zavriete"><img name="photo" src="./gallery/'+img+'" alt="Kliknutím okno zavriete" /></a>');
          write('</body></html>');
          close();
        }
  }
-->