X

4'x6' Alcom Enclosed Cargo 58"

2023 Alcom 4x6 Enclosed Trailer with Barn Doors

* All-Aluminum Construction, Integrated Frame Design
* Front Style: V-Front
* 2"x3" Integrated Frame
* 24" O/C Floor & Roof Studs
* 16" O/C Wall Studs
* Screwless .030 Bonded Sides
* One Piece Aluminum Roof
* 24" Stoneguard
* 2" Coupler with Safety Chains
* 1200lb Wheel Jack
* 5/8" Water Resistant Decking
* 3/8" Water Resistant Interior Walls
* Wood Luan Walls w/ Kickplate
* Interior Cove Trim
* 3" Exterior Trim
* (1) Dome Light
* Exterior LED Lighting
* Plastic Salem Vents
* 4-Year Limited Warranty
4'x6' Alcom Enclosed Cargo 58"
Price: $4,800 On Sale! $3,999
Charcoal - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 25309
VIN: 5WFBE0618PS025309
Condition: New
Year: 2023
Manufacturer: Alcom Inc.
Model:
Length: 6'
Width: 4'
Height: 58"
GVWR (lbs): 2,200
Weight (lbs): 650
Payload (lbs): 1,550
Features: Barn Doors, Rock Shield, Roof Vent

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