﻿
function LoadPlayer(file, image, container, width, height) {
    var sa = new SWFObject("/inc/player.swf", "player", width, height, "7");
    sa.addVariable("file", file);
    sa.addVariable("image", image);
    sa.addVariable("repeat", "false");
    sa.addVariable("showdigits", "true");
    sa.addVariable("showdownload", "false");
    sa.addParam("allowfullscreen","true");
    sa.addParam("allowscriptaccess","always");
    sa.addParam("seamlesstabbing","true");
    sa.write(container);
}

function LoadMp3Player(file, container) {
    var sa = new SWFObject("/inc/mp3player.swf", "player", 300, 20, "8");
    sa.addVariable("mp3", file);
    sa.addVariable("width", "300");
    sa.addVariable("showstop", "1");
    sa.addVariable("showvolume", "1");
    sa.addVariable("sliderovercolor", "abd9f6");
    sa.addVariable("buttonovercolor", "abd9f6");
    sa.addVariable("loadingcolor", "e52c18");
    sa.write(container);
}