function redcircleIframe() {
    let iframe = document && document.createElement && document.createElement("iframe");
    iframe.setAttribute("style","border: none;max-width: 100%;width:1px;min-width:100%;");
    iframe.setAttribute("height", 170);
    iframe.setAttribute("scrolling", "no");
    iframe.setAttribute("src", "https://redcircle.com/embedded-player/sh/88584e71-e6b5-455d-9aae-e8b6d7817ea8/ep/42a6c4f6-afb4-4497-8939-de294fb06f8e?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-42a6c4f6-afb4-4497-8939-de294fb06f8e"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
