(function() { var createEmbedFrame = function() { var uriOriginal = "https://piste.fondoitalia.it/widget/elenco_regioni_mappa.php"; var target = document.querySelector("script[src*='" + uriOriginal + "']"); var width = target.getAttribute("data-width"); if (width === null) { width = "600px"; } width = "100%"; var height = target.getAttribute("data-height"); if (height === null) { height = "320px"; } var background = target.getAttribute("data-background"); var uriEmbedded = "https://piste.fondoitalia.it/widget/elenco_regioni_mappa_content.php"; var iframe = document.createElement("iframe"); iframe.src = uriEmbedded; if (width !== null) { iframe.style.width = width; } if (height !== null) { iframe.style.height = height; } if (background !== null) { iframe.style.background = background; } iframe.style.border = "0"; iframe.style.margin = "0"; iframe.style.padding = "0"; target.parentNode.insertBefore(iframe, target.nextSibling); }; setTimeout(createEmbedFrame, 1); }).call(this);