
document.write("\n");
function setBxIframe(iframe) {
var attr = iframe ? iframe.getAttribute("data-srcdoc") : null;
if (attr !== null) {
var contentDoc = iframe.contentDocument || iframe.contentWindow.document;
contentDoc.open();
contentDoc.write('');
contentDoc.write(attr);
contentDoc.write('');
contentDoc.close();
iframe.removeAttribute("data-srcdoc");
iframe.removeAttribute("onload");
}
}