
document.addEventListener('DOMContentLoaded', function() {
    // Функция для открытия формы
    function openForm(event) {
        event.preventDefault();
        Tilda.showPopup('myform');
    }

    // Если кнопки имеют ссылку с определенным href
    document.addEventListener('click', function(event) {
        const target = event.target;
        if (target.tagName === 'A' && target.getAttribute('href') === '#popup:myform') {
            event.preventDefault();
            Tilda.showPopup('myform');
        }
    });
});
