// JavaScript Document

function NoveOkno(img,xwidth,yheight){
  
  var winl = (screen.width - xwidth) / 2;
  var wint = (screen.height - yheight) / 2;
  var a = window.open("","new","left="+winl+",top="+wint+",width="+xwidth+",height="+yheight);
  
  if (parseInt(navigator.appVersion) >= 4) { a.window.focus(); }
  
  a.document.writeln('<html>');
  a.document.writeln('<head><title>Velký náhled</title></head>');
  a.document.writeln('<body style="margin:0;padding:0;">');
  a.document.writeln('<a href="#" onclick="window.close();"><img src="'+img+'" border="0" width="'+xwidth+'" height="'+yheight+'" alt="klikni pro zavření okna"></a>');
  a.document.writeln('</body>');
  a.document.writeln('</html>');
  a.document.close();
}
