function ShowPlayerWindow_Dancilla(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 style="width: ' + embedWidth + 'px; height: ' + embedHeight + 'px;" type="application/x-shockwave-flash" '
    + 'data="http://www.myvideo.de/movie/'
    + embedSrc + '"> <param name="movie" value="http://www.myvideo.de/movie/'
    + embedSrc + '"> <param name="AllowFullscreen" value="true"> </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();
}
