function zobrazit(foto,w,h) {
    okno=window.open("","","left=50,top=50,width="+w+",height="+h+",menubar=no,resizable=no");

 with (okno.document)
 {
  open();
  writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
  writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">\n<head>');
  writeln('<meta http-equiv="content-type" content="text/html; charset=ISO-8859-2" />');
  writeln('<title>Reference</title>');
  writeln('</head>');
  writeln('<body style="margin: 0;">');
  writeln('<img src="'+foto+'" border="0" alt="reference" />');
  writeln('</body>\n</html>');
  close();
 }
  okno.focus();
}

