Zadajte údaje pre výpočet poistenia

document.addEventListener("DOMContentLoaded", function() { var iframe = document.querySelector('.responsive-iframe-container iframe'); if (iframe) { iframe.onload = function() { iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px'; }; // To periodically adjust the height if content changes dynamically setInterval(function () { iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px'; }, 1000); } });