function OpenResized(image)
 {
 var okno=window.open('','okno','toolbar=no,location=no,status=no,scrollbar=no,width=800,height=700,resizable=yes,scrollbars=no');
okno.document.writeln('\
<html><head></head><body topmargin="5" leftmargin="5">\
<p><a href="javascript: window.close() ; "><img id="obrNahled" border="0" src="'+image+'" onLoad="resize() ; " ></a></p>\
<script type="text/javascript">\
function resize() {\
obrazek=document.getElementById("obrNahled");\
	if (window.outerWidth) {\
		window.outerWidth = obrazek.width+20;\
		window.outerHeight = obrazek.height+63;\
	}\
	else if (window.resizeTo) {\
		window.resizeTo(obrazek.width+20,obrazek.height+63);\
	}\
}\
</script>\
</body></html>');

okno.document.close();
}

