X

6'x12' Alcom Enclosed Cargo 73"

Alcom Xpress 6x12 Enclosed Trailer

interior height 73"

overall height 94"

Door opening height 69"

Door Opening Width 64"

1-3500# Axle

205/75R15 All-Aluminum Construction, Integrated Frame Design

  • 24" V-Nose Front

  • 2"x3" Integrated Frame

  • 24" O/C Floor & Roof Studs

  • 16" O/C Wall Studs

  • Screwless .030" Bonded Sides

  • One Piece Aluminum Roof

  • 1-3K Idler Leaf Spring Axle w/4" Drop

  • 24" Stone Guard

  • 2" Coupler w/Safety Chains

  • 2000lb Center Jack w/Foot

  • 5/8" Water Resistant Decking

  • 3/8" Water Resistant Interior Walls

  • Interior Cove Trim

  • 3" Exterior Trim

  • (1) Dome Light w/Switch

  • Exterior LED Lighting

  • Plastic Salem Vents

  • Rear Ramp w/Spring Assist w/Aluminum Hardware

  • 32"x66" Side Door w/Paddle Handle & Piano Hinge

  • 4-Year Limited Warranty

6'x12' Alcom Enclosed Cargo 73"
Price: $6,800 On Sale! $6,075
Black - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: X20013
VIN: 4TCSE1216SHX20013
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model:
Length: 12'
Width: 6'
Height: 73"
GVWR (lbs): 2,990
Weight (lbs): 1,055
Payload (lbs): 0
Features: Ramp Gate, 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'; }); });