var playerSWF; var limit = 10; if (AC_FL_RunContent == 0) { alert("This page requires AC_RunActiveContent.js."); } else { playerSWF = AC_FL_RunContent( 'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0', 'width', '640', 'height', '410', 'src', 'top10Mp3Player', 'quality', 'high', 'pluginspage', 'http://www.macromedia.com/go/getflashplayer', 'align', 'middle', 'play', 'true', 'loop', 'true', 'scale', 'showall', 'wmode', 'transparent', 'devicefont', 'false', 'id', 'top10Mp3Player', 'bgcolor', '#000000', 'name', 'top10Mp3Player', 'menu', 'true', 'allowFullScreen', 'false', 'allowScriptAccess','sameDomain', 'movie', 'top10Mp3Player', 'salign', '' ); //end AC code } function likeTrack(userIsGuest,trackID,thumb){ if (!userIsGuest) { $.ajax({ type: 'POST', url: baseUrl+"/track/like", data: {uID:userID,tID:trackID,like:thumb}, success: function (resp){ /*update the count*/ if (resp.success){ if (thumb){ $("#nums_thumbs_up").html(parseInt($("#nums_thumbs_up").text())+1); } else { $("#nums_thumbs_down").html(parseInt($("#nums_thumbs_down").text())+1); } } divAlert(resp.msg); }, dataType: "json" }); } else { divAlert("Please log in"); } } function onLoadExec(){ togglePlaylist(); showChart(); }