function zoom(name,wid,hei)
{
no=window.open("","zoom","width="+wid+",height="+hei+",top=20,left=50,scrollbars=yes,resizable=yes,"+ "toolbar=no,directories=no,menubar=no,location=no,copyhistory=no");

with (no.document)
{
open();
writeln('<html>\n<head>\n<title>Náhled obrázku</title>\n</head>\n');
writeln('<body topmargin=0 leftmargin=0 onLoad=\"javascript:window.focus();\">\n<center>');
writeln('<img src="'+name+'" alt="Po kliknutí na obrázek se okno zavře" style="cursor:hand" onclick="javascript: window.close()">\n');
writeln('</center>\n</body>\n</html>');
close();
focus();
}
}

