X

6.5'x14' High Country Utility

2025 Alcom High Country 7x14 Utility Trailer with Bi-Fold Ramp (6.5x14)

 Standard Trailer Features and Upgrades

* All Aluminum Construction
* 24" O/C Floor Crossmembers
* 2"x3" Subframe Tubing
* (2) 5000# Safety Chains
* 6000# Coupler w/2" Ball
* Torsion Ride Idler Axle
* Extruded Aluminum Decking
* Bi Fold Rear Ramp
* Exterior LED Lights
* Adjustable Perimeter Track for Easy Install Options
* 4-Year Limited Warranty
6.5'x14' High Country Utility
Price: $4,550 On Sale! $3,699
Gray - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: S030524
VIN: 5WFBU1419SS030524
Condition: New
Year: 2025
Manufacturer: High Country
Model:
Length: 14'
Width: 6.5'
Height:
GVWR (lbs): 2,990
Weight (lbs): 982
Payload (lbs): 2,008
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'; }); });