﻿
function embedVideo(container, source, poster, width, height) {
    var videoplayerfolder = "../videoplayer/";
    var controlStripHeight = 40;		// the pixel height of the control skin added to the bottom
    var fullHeight = parseInt(height) + controlStripHeight;

    var flashvars = {sourceurl: source, skinurl:videoplayerfolder + "SkinUnderAllNoFullNoCaption.swf", posterurl: poster, width: width, height: fullHeight.toString()};
    var params = {quality:"best" };
    var attributes = {};

    swfobject.embedSWF(videoplayerfolder + "videoplayer.swf", container, width, fullHeight.toString(), "9.0.124", "../javascript/expressInstall.swf", flashvars, params, attributes);
}
