function ShowPlayerWindow(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'
	+'<object width="640" height="510">'
    + '<embed src="' + embedSrc + '" '
    + 'type="application/x-shockwave-flash" allowscriptaccess="always" '
    + 'allowfullscreen="true" height="' + embedHeight + '" width="' + embedWidth + '" autostart="true">\n'
	+ '</object>\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();
}

