/**************************** Video Player ***********/
function selectVideo(_file, _still, _id, _width, _height, _autoplay, _wmode ){  

    // updateYouTubeLink();
    if(typeof(_autoplay)=="undefined")   _autoplay=true;
    if(typeof(_wmode)=="undefined")   _wmode="transparent";

    var flashvars = {
        file: "../../" + _file // Flash will start the relative path at the flash object, move out of skins directory to site root.
        , type: "video"
        , autostart: _autoplay
        , controlbar: "over"
        , skin: ( baseurl + "video/skins/stylish_slim.swf" )
        , icons: "false"
        , image: _still
        , stretching: "fill"
        , bufferlength: 3
        , duration: 379
    }
    var params = {
        allowfullscreen:"true",
        allowscriptaccess:"always",
        wmode:_wmode
    }
    
    var attributes = {};

    swfobject.embedSWF( ( baseurl + "video/skins/player.swf" ), _id,  _width, _height, "9.0.115", false, flashvars, params, attributes);
}