X

8.5'x20' Alcom Car Racing 8.5x20 XPRESS 82"

2025 Alcom Xpress 8.5x20 Enclosed Car Hauler Trailer 

Standard Trailer Features and Upgrades

* All-Aluminum Construction, Integrated Frame Design
* Flat Front w/Cast Corners
* 2"x5" Integrated Frame (16' to 20')
* 16" O/C Floor & Roof Studs
* Screwless .030" Bonded Sides
* One Piece Aluminum Roof
* 2-3K Braked Leaf Spring Axles w/4" Drop (16' to 20')
* 24" Stone Guard
* 2-5/16" Coupler w/Safety Chains
* 5000lb Center Jack w/Foot
* White Vinyl Faced Luan Walls
* 3/4" Water Resistant Decking
* Interior Cove Trim
* 3" Exterior Trim
* (2) Dome Lights w/Switch
* Exterior LED Lighting
* Plastic Salem Vents
* (4) HD 5,000# Recessed D-Rings
* Beavertail Construction
* HD Rear Ramp w/Spring Assist w/Aluminum Hardware
* 32"x72" Side Door w/Paddle Handle & Piano Hinge
* 4-Year Limited Warranty
* 82" Interior Height
* Rear Door Opening 79"
8.5'x20' Alcom Car Racing 8.5x20 XPRESS 82"
Price: $13,500 On Sale! $12,000
Black - Car Racing/Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 70017
VIN: 4TCSE2027SHS70017
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model: 8.5x20 XPRESS
Length: 20'
Width: 8.5'
Height: 82"
GVWR (lbs): 7,000
Weight (lbs): 2,680
Payload (lbs): 4,320
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'; }); });