var title = 'visitdenmark.no/legofilm';
var siteUrl = 'http://woxcamp01.wox.no/mediafront/visitdenmark/Share.aspx';

function shareOnFacebook(guid)
{    
    var url = '';
    if(guid != '')
    {
        url = siteUrl + '?guid=' + guid;
    }
    else
    {
        url = siteUrl;
    }
    window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(url),'sharer','toolbar=0,status=0,width=626,height=436');    
}

function shareOnNettby(guid)
{
    var url = '';
    if(guid != '')
    {
        var url = siteUrl + '?guid=' + guid;
    }
    else
    {
        url = siteUrl;
    }
    window.open('http://www.nettby.no/user/edit_link.php?name=' + title + '&url=' + encodeURIComponent(url) + '&description=','sharer','toolbar=0, status=0,width=450,height=430');
}