/**
 * Biblioteka
 */
window.biblioteka = {
	ajaxDeletePicture: function() {
		var picture = $(this);
		if (confirm('Czy na pewno chcesz usunąć zdjęcie?')) {
			$.post('/getContent.php?'+ajaxIeFix(), {
				plugin: 'PrbPanelBiblioteki',
				content: 'ajaxDeletePicture',
				action: 'deletePicture',
				lib_id: $('input[name="lib_id"]').val(),
				picture: $('input[name="picture"]').val()
			},
			function(data){
				//$('#fsUploadProgress').hide();
				$('#fileUploader').show();
				$('.progressName').html('');
				$('.deleteDiv').html('');
				
			}
			)
			return false;
		}
	}
}
$(document).ready(function(){
	if ($('#ten_sam_adres').attr('checked')){
		$('#adresInstytucji').hide();
	}
	$('#ten_sam_adres').click(function(){
		if ($('#ten_sam_adres').attr('checked')){
			$('#adresInstytucji').hide();
			$('#adresInstytucji').children().find('input').val('');
		}else $('#adresInstytucji').show();
			
	});
	
});

