X

7'x16' Alcom Contractor XPRESS 7x16 Ultimate Contractor 79"

2025 Alcom Xpress 7x16 Enclosed Contractor Trailer 

#### Standard Trailer Features and Upgrades

* All-Aluminum Construction, Integrated Frame Design
* 36" V-Front
* 2"x5" Integrated Frame
* 16" O/C Floor & Roof Studs (All Box-Tube)
* 16" O/C Wall Studs
* Screwless .030 Bonded Sides
* One Piece Aluminum Roof
* 2-5K Leaf Spring Braked Axles
* 24" Stone Guard
* 2-5/16" Coupler w/Safety Chains
* 2000lb Center Jack w/Foot
* 3/8" Water Resistant Interior Walls
* 3/4" Water Resistant Decking
* Interior Cove Trim
* 3" Exterior Trim
* (2) Dome Lights w/Switch
* Exterior LED Lighting
* Plastic Salem Vents
* Double Barn Doors w/Stowable Removable Ramp Kit
* Aluminum Hardware for Barn Doors
* Catwalk System w/(4) HD Ladder Racks & Front Ladder
* Rear Roller for Last Ladder Rack
* 32"x72" Side Door w/Paddle Handle, Piano Hinge & Butterfly Locking Bar
* 4-Year Limited Warranty
* Color - Black
* Integrated Wall E-Track
* Exterior Blackout Package
* Integrated E-Track System
7'x16' Alcom Contractor XPRESS 7x16 Ultimate Contractor 79"
Price: $16,500 On Sale! $15,999
Black - Contractor
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: S030380
VIN: 5WFBE1627SS030380
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model: XPRESS 7x16 Ultimate Contractor
Length: 16'
Width: 7'
Height: 79"
GVWR (lbs): 10,000
Weight (lbs): 2,750
Payload (lbs): 7,250
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'; }); });