function OpenPopupPage( page, params )
{
    $.get( "/index.php",
            {
                call: 'getInformationPage',
                page: page,
                params: params,
                ajax: 'on'
            },
            function(data)
            {
                $.modal( HtmlEntityDecode( data.html ), { opacity: 50 } );
            },
              "json"
    );
    
    
}
