
if (self.parent.frames.length != 0) self.parent.location=document.location; 	// odramkowanie

         
(function($) {
$(document).ready(function () {
	$("#uploadFILE").submit(function (e) {
		//e.preventDefault();
		setTimeout("checkprogress()", 700);
	});
});
})(jQuery);


function checkprogress(){    // fn.chpss
	//pobranie unikalnego idenfikatora
	var ukey=$("#uploadFILE").find('input[name="UPLOAD_IDENTIFIER"]').val();
	
	$.getJSON("/upload_progress.php?progress_key="+ukey, function (data) {
		$('.up_b').html(data.up_b);
		$('.up_all_b').html(data.up_all_b);

		$('.up_procent').html(data.up_procent+'%');
		$('.up_lewa').css('width', data.up_procent+'%');
		$('.up_bierzaca').html(data.up_bierzaca+'/s');
		$('.up_srednia').html(data.up_srednia+'/s');

		$('.czas_start').html(data.czas_start);
		$('.czas_koniec').html(data.czas_koniec);

		//$('#progress').html(data.toSource());
		setTimeout("checkprogress()", 500);
	});
	
}      // fn.chpss


