function show(url,width,height)
	{
		sirka = width;
		vyska = height;
		
		no=window.open("", "zoomv", "width="+sirka+", height="+vyska+", toolbar=no, menubar=no,"+
		"scrollbars=no, resizable=no, copyhistory=no");
		with (no.document)
		{
			open();
			writeln('<html>\n<title>Foto</title>\n<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" bgcolor="white">\n<center>');
			writeln('<img src="'+url+'" width="'+sirka+'" height="'+vyska+'" border="0">');
			writeln('</center>\n</body>\n</html>');
			close();
		}
}

