function AddMp3Player(divid  , object_id , mp3){

    var object = '<object id='+object_id+' type="application/x-shockwave-flash" data="/js/mp3flash/player_mp3_maxi.swf" width="500" height="100">';
        object += '<param name="wmode" value="transparent" />';
        object += '<param name="movie" value="/js/mp3flash/player_mp3_maxi.swf" />';
        object += '<param name="FlashVars" value="mp3='+mp3+'&autoplay=0" />';
        object += '</object>';    
    $('#'+divid).html(object);
}

function play(object_id) {
    document.getElementById(object_id).SetVariable("player:jsPlay", "");
}
function pause(object_id) {
    document.getElementById(object_id).SetVariable("player:jsPause", "");
}
function stop(object_id) {
    document.getElementById(object_id).SetVariable("player:jsStop", "");
}
function volume(object_id , n) {
    document.getElementById(object_id).SetVariable("player:jsVolume", n);
}


