﻿function displayVideo(videoUrl, width, height) {
    var flashvars = false;
    var params = {
        wmode: "opaque"
    };
    var attributes = false;

    swfobject.embedSWF(videoUrl, "flashContent", width, height, "9.0.0", "/flash/expressInstall.swf", flashvars, params, attributes);

    document.getElementById("videoPlayer").style.display = 'block';
}
