X

5'x10' High Country Utility

2025 Alcom High County 5x10 Utility Trailer

Standard Trailer Features and Upgrades

* All-Aluminum Construction
* 2"x4" Box Tube Tongue
* 24" O/C Floor Crossmembers
* 2000# Center Jack
* Leaf Spring Idler Straight Axle
* Integrated Aluminum Fold-Down Ramp
* 3-Piece Extruded Hinge System (60/66-Wide)
* 4-Piece Extruded Hinge System (72/80-Wide)
* Exterior LED Lighting
* 2"x8" Heat Treated Planking
* 2"x2" Rail Kit
* Aluminum Fenders
* 6000# Coupler w/2" Ball
* 4-Year Limited Warranty
* Upgrade to aluminum Bi Fold Ramp
5'x10' High Country Utility
Price: $2,899 On Sale! $2,750
Silver - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: S030554
VIN: 5WFBU101XSS030554
Condition: New
Year: 2025
Manufacturer: High Country
Model:
Length: 10'
Width: 5'
Height:
GVWR (lbs): 2,990
Weight (lbs): 378
Payload (lbs): 2,612
Features:

Other Recommendations

// 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'; }); });