function imprime_modulo_rtv(categoria){
	carregando()
	$.post(base_url()+'modulo/modulo_rtv_'+categoria, [{ name: 'elemento_id', value : $('#elemento_id').val()}], function(response){
		if(response){
			$('#modulo_rtv_'+categoria).html(response)
			ativa_paginacao($('#modulo_rtv_'+categoria))
			$('#modulo_rtv').show('fast')				
		}
		carregando()	
	})
}