Cookies help make our website work securely and just the way you like it. By allowing us
to use them, you will get the best user experience with a relevant display of our features and services. We also
use technical, analytics, and third-party cookies to deliver you enriched brand content. By continuing to browse
our website, you accept these cookies.
Accept
Thank you for contacting us.
We will reach out to you shortly.
// Track total time across pages
let totalTime = 0; // Time in seconds
let popupShown = false; // To make sure popup shows only once
// Check if time is already stored in localStorage to persist across pages
if (localStorage.getItem('timeSpent')) {
totalTime = parseInt(localStorage.getItem('timeSpent'));
}
// Increment time every second
setInterval(() => {
if (!popupShown) {
totalTime += 1; // Increment total time by 1 second
localStorage.setItem('timeSpent', totalTime); // Store updated time
// If total time reaches 15 seconds, trigger the popup
if (totalTime >= 15 && !popupShown) {
// Replace '123' with your actual Popup ID from Popup Maker
PUM.open(6168);
popupShown = true; // Ensure the popup is shown only once
}
}
}, 1000); // Run every 1000ms (1 second)