	function zobr_img(file, title) {
		 okno = window.open('', '', 'fullscreen=0,titlebar=0,locationbar=0,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,hotkeys=0,width=200,height=200');
		okno.document.open("text/html", "replace");
		okno.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
		okno.document.write('<HTML>');
		if (title == null) {
			title = 'Picture';
		}
		okno.document.write('<HEAD><title>'+title+'</title></HEAD>');
		okno.document.write('<BODY BOTTOMMARGIN="0" TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0" BGCOLOR="#FFFFFF" onload="resizeTo((document.images.picture.width+15),(document.images.picture.height+35))">');
		okno.document.write('<img src="'+file+'" border=0 name="picture" onclick="window.close(self)">');			
		okno.document.write('<SCRIPT language=\"Javascript\">');
		okno.document.write('moveTo(0,0);');
		okno.document.write('<\/SCRIPT>');
		okno.document.write('</body></html>');		
		okno.document.close();
		okno.focus();
	}	
