function reloadEpiFormJs(url) {
const dataEl = document.querySelectorAll('[data-id="fsasync"]');
if (!dataEl.length) {
var theScript = document.createElement('script');
theScript.src = url;
theScript.setAttribute('data-id', 'fsasync');
document.head.appendChild(theScript);
}
}
window.setTimeout(function () {
reloadEpiFormJs('/Util/EPiServer.Forms/EPiServerForms.min.js');
}, 3000);