function nahled(image, x, y)
 {
 var okno=window.open('','okno','toolbar=no,location=no,status=no,scrollbar=no,width='+x+',height='+y+',resizable=yes,scrollbars=no');
okno.document.writeln('\
<html><head></head><body topmargin="0" leftmargin="0">\
<p><a href="javascript: window.close() ; "><img onload="resize()" id="obr" border="0" src="/admin/upload/'+image+'" ></a></p>\
<script type="text/javascript">\
function resize() {\
obrazek=document.getElementById("obr");\
	if (window.outerWidth) {\
		window.outerWidth = obrazek.width;\
		window.outerHeight = obrazek.height+30;\
	}\
	else if (window.resizeTo) {\
		window.resizeTo(obrazek.width,obrazek.height);\
	}\
}\
</script>\
</body></html>');

okno.document.close();
}


