X

7.5'x14' Alcom Enclosed Cargo 7.5x14 Xpress 79"

7.5'x14' Alcom 7.5x14 Xpress Enclosed Cargo

Model Number

XPRESS7.4x14-IF

Box (WxLxH)

88"x14'x81"

Interior (WxLxH)

85"x13'10”x79"

Overall (WxLxH)

102"x18'x100"

Deck Height

20"

Rear Door Opening (WxH)

84"x76"

Axle(s) - Qty/Rating

2-3500# Braked

Wheels

15" Silver Mods

Tires

205/75R15

GVWR

7000#

Curb Weight

1480#

Payload

5520#

Hitch Height

19"

7.5'x14' Alcom Enclosed Cargo 7.5x14 Xpress 79"
Price: $12,500 On Sale! $11,599
Black - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 30079
VIN: 4TCSE1421SHX30079
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model: 7.5x14 Xpress
Length: 14'
Width: 7.5'
Height: 79"
GVWR (lbs): 7,000
Weight (lbs): 1,630
Payload (lbs): 5,370
Features: Ramp Gate, Rock Shield, Screwless Exterior, Side Door

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