function displayEventsListBox(slug,date,page) {
    
    url_xml_rpc = js_global_root_url+'rpc/call.php';
    var struct_param = new Object();
    struct_param['header'] = new Object();
    struct_param['header']['version'] = '1.0.0';
    struct_param['header']['product'] = 'calendar';
    struct_param['header']['sessid'] = sessid;
    struct_param['header']['dialect'] = 'json';
    iso_encoding = 'utf-8';
    
    try {
        struct_param['header']['type'] = 'get_events_list_box';
        struct_param['query'] = new Object();
        struct_param['query']['slug'] = slug;
        struct_param['query']['date'] = date;
        struct_param['query']['page'] = page;
        
        $.ajax(setup(struct_param,
                     function(response) {
                         $('#calendar').remove();
                         if(response['result']) {
                             $('#calendar_box')[0].innerHTML = response['result'];
                             //$('#calendar_box').html(response['result']);
                         }
                         else {
                             $('#calendar_box').html("errore");
                         }
                     }));
        
    }
    catch(ex) {
        if(debug) {
            alert(ex);
        }
    }
}
