
function kb_pa_refresh_zone(target, url, type){
	//alert(wait_div_inner);
	//alert(target);
	var pars=null;
	target_object=document.getElementById(target);
	$.ajax({         
			type: "GET",         
			url: url,         
			success: function(retour){        
				jQuery("#"+target).fadeOut(0);;
				target_object.innerHTML=retour;
				jQuery("#"+target).fadeIn(1);
			}     
	});
}

function kb_pa_refresh_zone_object(target_object, url, type){
	//alert(wait_div_inner);
	//alert(target);
	var pars=null;
	$.ajax({         
			type: "GET",         
			url: url,         
			success: function(retour){        
				jQuery(target_object).fadeOut(0);;
				target_object.innerHTML=retour;
				jQuery(target_object).fadeIn(500);
			}     
	});
}

