function gtag_report_conversion(url) {
var callback = function () {
if (typeof(url) !== 'undefined') {
window.location = url;
}
};
gtag('event', 'conversion', {
'send_to': 'AW-10805777854/uJO3CPzh7IEaEL6rzKAo',
'event_callback': callback
});
return false;
}
// Attach the event listener to the button with ID 'estimator-tool'
document.querySelector('#estimator-tool').addEventListener('click', function() {
// Call the function with the appropriate URL
gtag_report_conversion('fenceanddeckconnection.com');
});