
	function pokaz_typ (id)
	{
		//ukrywamy wszytkie
		$('.i_ukryj').hide();
		
		$('#'+id+'_formaty').show();
		
		//opcje etykiet
		/*
		if (id=='tpobranie' || id=='tpolecony' || id=='tpaczka') $('#opcje_etykiet').show();
		else $('#opcje_etykiet').hide();
		
		if (id=='tlistw') $('#ile_na_1').show();
		else $('#ile_na_1').hide();
		// */
		
		
		$('.opcje_'+id).show();

		
		
		$('#pkt3_dane').show('slow');
		$('#krok2').show('slow');
	}
	
	function spr_format ()
	{
		id = 'tpobranie';
		if (document.getElementById(id).checked) pokaz_typ(id);
		
		id = 'tpolecony';
		if (document.getElementById(id).checked) pokaz_typ(id);
		
		id = 'tpaczka';
		if (document.getElementById(id).checked) pokaz_typ(id);
		
		id = 'twplata';
		if (document.getElementById(id).checked) pokaz_typ(id);
		
		id = 'tlistw';
		if (document.getElementById(id).checked) pokaz_typ(id);
				
	}
	
	
$(document).ready(function(){	
						   spr_format();
						   })
