";
// content += "";
//
doc.open();
doc.write(content);
doc.close();
//
ifrm.style.visibility="hidden";
ifrm.style.width = "0px";
ifrm.style.height = "0px";
//
}
window.onload=prefetchContent ;
function recaptchaV3Setup() {
const captcha_site_key = "6LdGP8IqAAAAAK2T-FMoN1HZYHogXcFlTL_5wuQa";
grecaptcha.ready(function () {
grecaptcha.execute(captcha_site_key, { action: 'contact' }).then(function (token) {
let recaptchaResponse = document.getElementById('recaptchaResponse');
if (token && recaptchaResponse) {
recaptchaResponse.value = token;
}
});
});
}
recaptchaV3Setup();
let refreshV3captchaToken = setInterval(function(){recaptchaV3Setup();}, 60 * 1000);