// JavaScript Document
function zobraz_letak(nazev,letak,x,y)
{
  if (y<=740) {
  no=window.open("","letak_nahled","width="+x+",height="+y+", menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,copyhistory=no");
  }
 else {
 no=window.open("","letak_nahled","width=816,height=740, menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no,copyhistory=no");	 
 }
with (no.document)
{
open()
writeln('<HTML>\n<title>'+nazev+'</title><body topmargin="0" leftmargin="0">');
writeln('<a href="javascript:self.close()"><img src="'+letak+'" border = "0" /></a>');
writeln('</body></html>');
close();
}
}