﻿function showFeaturedVideo(containerId, elementId, url, thumbUrl, width, height) {
    swfobject.removeSWF(elementId);

    document.getElementById(containerId).innerHTML = "<div id=\"" + elementId + "\"></div>";
    
    var flashVars = {};
    flashVars.file = url;
    flashVars.image = thumbUrl;

    var params = {};
    params.scale = "noScale";
    
    var attributes = {};
    swfobject.embedSWF("/resource/flash/jw_player.swf", elementId, width, height, "9.0.0", false, flashVars, params, attributes);
    return false;
}
