function ShowPlayerWindow_YouTube(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="' + embedWidth + '" height="' + embedHeight + '"><param name="movie" value="http://www.youtube.com/v/"'
    + embedSrc + '&hl=en&fs=1&autoplay=1"></param><param name="allowFullScreen" value="true"></param>'
    + '<embed src="http://www.youtube.com/v/' + embedSrc + '&hl=en&fs=1&autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" '
    + 'width="' + embedWidth + '" height="' + embedHeight + '"></embed></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();
}
