$(document).ready(function (){

});
function view_integrators(model)
{
    $.ajax({
        type: 'post',
        async: true,
        url: "/goods/integrators/index.php",
        dataType: "json",
        data: {model: model},
        success: function(data){
            $("#box").html(data.html);
            $("#box").dialog({
                modal: true,
                title: 'Интеграторы',
                width: 360
            });
        }
    });
}



