<!-- Код для открытия попапа по ссылке -->
<!-- https://roman-kosov.ru/custom-code-popup-link -->
<script>
if (window.location.hash !== "") {
var linkToPopup = document.createElement('a');
linkToPopup.setAttribute('href', window.location.hash);
linkToPopup.style.display = 'none';
document.querySelector('.r').appendChild(linkToPopup);
t_onReady (function () {
t_onFuncLoad('t_popup__showPopup', function () {
setTimeout(function() {
linkToPopup.click();
}, 500);
});
});
}
</script>