X

7'x14' High Country Utility HATV83x14

#### OVERVIEW

Spend more time hitting the trails and less time loading and unloading. Enjoy life more and stow ramps less.

#### FEATURES

All-Aluminum Construction

24" O/C Floor Crossmembers

2"x3" Subframe Tubing

3500# Wishbone Style Coupler w/ 2" Ball

(2) 5000# Safety Chains

Dexter Leaf Spring Axles

Custom Angle Side Rails for Low Profile Side Loading

1200# Wheel Jack

5/4" Pressure Treated Decking

Rear & Front Stowing Removable 8' Ramps

Recessed LED Marker Lights

#### SPECS

Model Number HATV83x14

Deck WxL 83" x 14'

Overall WxL 102" x 18'

Deck Height 23"

Hitch Height 19"

Decking 5/4" PT

Axle(s) - Qty/Rating 1-3500#

Wheels 15" Silver Mod

Tires 205/75R15

GVWR 2990#

Curb Weight 400#

Payload 2590#

Power Connection 7-Way Round
7'x14' High Country Utility HATV83x14
Price: $4,300 On Sale! $2,690
Silver - Utility
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 025033
VIN: 00000000000025033
Condition: New
Year: 2023
Manufacturer: High Country
Model: HATV83x14
Length: 14'
Width: 7'
Height:
GVWR (lbs): 2,690
Weight (lbs): 400
Payload (lbs): 2,590
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'; }); });