function otworz(file_name,  height_big, width_big,file_type)
{
    
    
	var picture_left = screen.width;
	    var picture_top = screen.height;
	    
		if((picture_left > width_big) && (picture_top > height_big))
		      {
		    	
		    		picture_left = (picture_left/2) - (width_big/2);
		    			picture_top = (picture_top/2) - (height_big/2);
		    			
		    			      }
		    			        else
		    			    	    {
		    			    		    picture_left = 0;
		    			    			    picture_top = 0;
		    			    				    }
		    			    					
		    			    					    PictureWindow = window.open('', '', 'toolbar=no, resizable=yes, scrollbars=yes, width=' + width_big + ', height=' + height_big + ', left=' + picture_left + ', top=' + picture_top);
		    			    						PictureWindow.document.open();
		    			    						    PictureWindow.document.write('<HTML><HEAD><TITLE>PowiÄ?kszenie...</TITLE></HEAD><BODY scrollbars="yes" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0">');
		    			    							PictureWindow.document.write('<a href="javascript:window.close()"><img src="' + file_name + '" width=' +
		    			    									    	       width_big + ' height=' + height_big + ' vspace="0" hspace="0" border="0" alt="Zamknij okno..."></a>');
		    			    									    	        PictureWindow.document.write('</BODY></HEAD>');
		    			    									    	    	PictureWindow.document.close();
		    			    									    	    	    PictureWindow.focus();
		    			    									    	    	    
		    			    									    	    	    }
		   