X

UTVs in Watertown

Filters
To
To
To
To
To
2024 ARGO Magnum Pro XTX 4x4 Utility Side-by-Side (UTV)
2024 ARGO Magnum Pro XTX 4x4 Utility Side-by-Side (UTV)
$11,299 $9,999
Location: Watertown
Stock #: 50132
2025 American LandMaster AMP-Ranch Edition Utility Side-by-Side (UTV)
2025 American LandMaster AMP-Ranch Edition Utility Side-by-Side (UTV)
$23,999 $17,999
Location: Watertown
Stock #: 400149
// 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'; }); });