function publish_facebook(dest)
{
  debug('publish_facebook (' + dest + ')');

  dest = dest.toLowerCase();

  var d = $.ajax({type: 'POST', data: { dest: dest }, url: '/kam', async: false}).responseText.split('|');
  var url = 'http://www.poslimedu.cz/' + encodeURIComponent(d[1].toLowerCase());

  _gaq.push(['_trackEvent', 'Patička', 'Button', 'Pošli méďu na svou zeď']);

  FB.ui(
   {
     method: 'stream.publish',
     display: 'popup',
     message: 'Můj méďa jel na dovolenou :-)',
     user_message_prompt: 'Pošli méďu na Facebook',
     attachment: {
       name: d[1],
       caption: d[2],
       description: 'Každému se může v zahraničí stát něco podobného. Navštiv www.poslimedu.cz.',
       href: url,
       media: [{
        type: 'image',
        href: url,
        src: 'http://www.poslimedu.cz/img/meda' + d[0] + '.jpg'
       }]
     },
     action_links: [
       { text: 'Pošli méďu', href: 'http://www.poslimedu.cz' },
       { text: 'Sjednej ihned cestovní pojištění', href: 'https://app.csobpoj.cz/sjednaniSpecial/init.jsp?utm_source=poslimedu&utm_medium=box&utm_campaign=posliBmedu' }
     ]
   }
  );
}
