POKE.myspace = function () {
    
    var ptm = function(T, C, U, L){ 
        var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(T) + '&c=' + encodeURIComponent(C) + '&u=' + encodeURIComponent(U) + '&l=' + L;
        window.open(targetUrl); 
    };
    
    return {
        share : function (published_song_pk) {
            $.getJSON('/api/get_myspace_embed_code_for_published_song/'+published_song_pk+'/', {}, function(data){
                console.log(data.content);
                ptm(data.title, data.content, data.url, data.location);
            });
        }
    };
    
}();