function fplayer(container_id, fl_url, thumb_url, width, height, duration) {    
    // Créer le player
    var s = new SWFObject('/DesktopModules/CESVI/swf/player.swf', 'ply', width, height, '9', '#ffffff');
    s.addParam('allowfullscreen', 'true');
    s.addParam('allowscriptaccess', 'always');
    s.addParam('wmode', 'opaque');
    s.addParam('flashvars', 'file='+ encodeURIComponent(fl_url) +'&image=' + (thumb_url ? encodeURIComponent(thumb_url) : '') + '&controlbar=over&duration=' + (duration ? duration : 0).toString() + '&fullscreen=true&stretching=fill');
    s.write(container_id);     
}