function ge(elem) {
  return document.getElementById(elem);
}



function facebook_logout(redirect) {
    FB.ensureInit( function() { 
        FB.Connect.logout(function() {
            location.href = redirect;
        });
    });
}

function search_results_stream_publish() {
    FB.ensureInit(function() {
        var attachment = {
            'description': 'Regularly comparing utility suppliers with SuperSwitcher is child\'s play, and can save you £££s.',
            'href': 'http://apps.facebook.com/superswitcher',
            'media': [{'type':'image',
            'src':'http://www.superswitcher.com/site_media/susi/img/misc/bulb_126x92.jpg',
            'href':'http://apps.facebook.com/superswitcher'
            }]};

        FB.Connect.streamPublish('', attachment, null, null, 'Add a personal message below...');
    });
}

function switch_complete_stream_publish() {
    FB.ensureInit(function() {
        var attachment = {
            'description': 'Regularly switching utility suppliers with SuperSwitcher is child\'s play, and can save you £££s.',
            'href': 'http://apps.facebook.com/superswitcher',
            'media': [{'type':'image',
            'src':'http://www.superswitcher.com/site_media/susi/img/misc/coin_stacks.jpg',
            'href':'http://apps.facebook.com/superswitcher'
            }]};

        FB.Connect.streamPublish('', attachment, null, null, 'Add a personal message below...');
    });
}

