$.ajax({
type: 'POST',
url: '/' + url,
data: name + '_f=1' + form,
cache: false,
success: function(result) {
var obj = jQuery.parseJSON(result);
if (obj.go)
go(obj.go);
else
$('.loaderAjax').html(obj.message);
}
});