X

Amphibious Vehicle in Edgerton

Filters
To
To
To
To
To
2024 ARGO FRONTIER 650 HO 8X8 ATV/ 4 WHEELER
2024 ARGO FRONTIER 650 HO 8X8 ATV/ 4 WHEELER
$17,899 $13,999
Location: Edgerton
Stock #: 51692
2025 ARGO AURORA 950 HUNTMASTER - CAMO ATV/ XTV
2025 ARGO AURORA 950 HUNTMASTER - CAMO ATV/ XTV
$33,099 $31,499
Location: Edgerton
Stock #: A52595
2025 ARGO Frontier 700 Scout 8x8 ATV- Camo
2025 ARGO Frontier 700 Scout 8x8 ATV- Camo
$23,299 $22,499
Location: Edgerton
Stock #: 52547
// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });