X

5'x10' Alcom Utility

2025 Alcom Fit 5x10 Utility Trailer

1" aluminum deck. 
Model Number FIT1064
Bed Width (in.)
64 Bed Length (in.)
120 Deck Type Aluminum Tie Downs
(4) D-Rings 21790 Overall Width (in.)
85 5/32 Overall Length (in.)
158 Ramp Standard
Straight Carrying Capacity 1,723 lb
GVWR 2,200 lb
Trailer Weight 477 lb
No. Of Axles 1
Hitch Height (in.)
15 3/4 Deck Height (in.)
18 Standard Tires ST175/80D13C
Steel Coupler 2(in.)
5'x10' Alcom Utility
Price: $3,600 On Sale! $2,999
Silver - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 21665
VIN: 4TCSU1813SHH21665
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model:
Length: 10'
Width: 5'
Height:
GVWR (lbs): 2,200
Weight (lbs): 477
Payload (lbs): 1,723
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'; }); });