function fbshare(_name, _link, _caption, _description) {

    FB.ui({
        method: 'feed',
        name: _name,
        link: _link,
        picture: 'http://www.agenda.it/images/event-icon.jpg',
        caption: _caption,
        description: _description,
        message: ''
    },
   function (response) {
       if (response && response.post_id) {
           //alert('Il post è stato pubblicato.');
       } else {
           //alert('Il post non è stato pubblicato.');
       }
   });

}
