X

8.5'x26' CellTech Enclosed Cargo 85X20TA5 106"


* 6â?3 Steel Tube Main Frame (Double Tube) & 16â?3 on center cross-members * HD Drop Leg Jack * 2 5/16â?3 Coupler * Interior Width 8' 3" * Interior Height 7' * Ramp Width 7' 7" * Ramp Height 6' 10" * Overall Length 25'6" * Overall Height (leveled) 8' 10" * Weight 3,360lbs * Electric Brakes (Both Axles) * Flow Through Vent System * Wall Mounted Vertical E Tracks (8pcs) * Roof Mounted Vertical E tracks (2pcs) * All LED Lights (Interior & Exterior) * 7 Way Bergman Plug * LED Brake Away Kit * Heavy Duty Ramp Door with Ramp Door Handle & Bar Locks * 36â?3 Side Door with Flush Lock & Bar Lock * 2 5/16â?3 Adjustable Coupler * D-Rings * Additional Wall Mounted Vertical E Tracks * 5-year warranty on Dexter axles * 10-year panel delamination warranty from CellTech Metals
8.5'x26' CellTech Enclosed Cargo 85X20TA5 106"
Price: $21,100 On Sale! $19,500
White - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: W000448
VIN: 7XXE12523SW000448
Condition: New
Year: 2025
Manufacturer: CellTech
Model: 85X20TA5
Length: 26'
Width: 8.5'
Height: 106"
GVWR (lbs): 14,000
Weight (lbs): 3,360
Payload (lbs): 10,640
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'; }); });