document.addEventListener('DOMContentLoaded', function() {
var embedLink = 'https://kinescope.io/wNZGPAAhFLfU3xaGMbPiKf?autoplay=1';
var popupId = '#popup:embedcode';
var aspectRatio = 16/9;
var popupContainer = document.querySelector('.t868__code-wrap');
function addIframe() {
var iframe = document.createElement('iframe');
iframe.width = '100%';
iframe.height = '100%';
iframe.src = embedLink;
iframe.frameBorder = '0';
iframe.setAttribute('allowfullscreen', '');
popupContainer.appendChild(iframe);
}
});