function ShowPlayerWindow_Brightcove(embedSrc, embedHeight, embedWidth, docTitle) {
  var windowHeight = embedHeight + 20;
  var windowWidth = embedWidth + 20;
  var docBody = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n'
    + '<html>\n'
    + '<head>\n'
    + '<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">\n'
    + '</head>\n'
    + '<body style="color: rgb(0, 0, 0); background-color: rgb(0, 0, 0);" '
    + 'alink="#000099" link="#000099" vlink="#990099">\n'
    + '<div class="blip_embed" style="text-align: center;">\n'
    + '<embed src="http://www.brightcove.tv/playerswf" bgcolor="#FFFFFF"'
    + 'flashVars="allowFullScreen=true&init'+ embedSrc + '&servicesURL=http://www.brightcove.tv'
    + '&viewerSecureGatewayURL=https://www.brightcove.tv'
    + '&cdnURL=http://admin.brightcove.com&autoStart=true" '
    + 'base="http://admin.brightcove.com" name="bcPlayer" width="' + embedWidth + '" height="' + embedHeight + '" '
    + 'type="application/x-shockwave-flash" allowscriptaccess="always" '
    + 'allowfullscreen="true" allowScriptAccess="always" seamlesstabbing="false" '
    + 'type="application/x-shockwave-flash" swLiveConnect="true" '
    + 'pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">\n'
    + '</div>\n'
    + '</body>\n'
    + '</html>';
  var featuresString = 'height=' + windowHeight + ',width=' + windowWidth + ',left=100,top=100,status=no,toolbar=no,menubar=no,location=no';
  oNewWindow = window.open("",null,featuresString);
  oNewWindow.document.write(docBody);
  oNewWindow.document.title = docTitle;
  oNewWindow.document.close();
}

