X

7'x14' High Country Utility HU80x14

2025 Alcom High Country 7x14 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

  • 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

  • 5000# Recessed Heavy Duty D-Rings

  • Upgrade to Bi-Fold Rear Ramp

7'x14' High Country Utility HU80x14
Price: $4,050 On Sale! $3,899
Silver - Utility
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 031507
VIN: 5WFBU1413SS031507
Condition: New
Year: 2025
Manufacturer: High Country
Model: HU80x14
Length: 14'
Width: 7'
Height:
GVWR (lbs): 2,990
Weight (lbs): 979
Payload (lbs): 2,011
Features: Bi-Fold Gate, Ramp Gate

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