﻿/* <![CDATA[ */
var pagenumber = 1;
function launchplayer(MixID) {
    window.open('/Modules/Music/PopupPlayer.aspx?MixID=' + MixID, 'PopupPlayer', 'width=225,height=280,status=0,toolbar=0,location=0,menubar=0,directories=0,scrollbars=0');
}
function downloadmix(MixID) {
    window.open('/Modules/Music/DownloadMusic.aspx?MixID=' + MixID, 'downloadmusic', 'top=50,width=550,height=300,resizeable=1,scrollbars=auto');
}
function tracklist(MixID) {
    window.open('/Modules/Music/TrackList.aspx?MixID=' + MixID, 'tracklist', 'top=50,width=600,height=550,resizeable=1,scrollbars=auto');
}
$(function() {
    $('ul.tabbuttons li').click(function() {
        $('ul.tabbuttons li').removeClass('selected');
        $(this).addClass('selected');
        var tabname = $(this).attr('id');
        pagenumber = 1;
        LoadMixes(1, tabname, 1, 0, 0);
    });
});
function LoadMixes(displaytype, tabname, pagenumber, artistid, mixid) {
    // alert("{'DisplayType':" + displaytype + ",'TabName':'" + tabname + "','PageNumber':" +
    //        pagenumber + ",'ArtistID':" + artistid + ",'MixID':" + mixid + "}");
    $('div.maincontent').html('<img src="/images/Site/AJAX/loading.gif" />');
    $.ajax({
        type: "POST", contentType: "application/json; charset=utf-8", dataType: "json",
        url: "/code/CustomControls/Music_Mixes/Music_Mixes_Server.aspx/LoadMixes",
        data: "{'DisplayType':" + displaytype + ",'TabName':'" + tabname + "','PageNumber':" + 
            pagenumber + ",'ArtistID':" + artistid + ",'MixID':" + mixid + "}",
        success: function(msg) {
            $('div.maincontent').html(msg.d.HTML);
        },
        error: function(xhr, ajaxOptions, thrownError) {
            $('div.maincontent').html(xhr.statusText + ' ' + thrownError);
        }
    });
}
/* ]]> */