X

6'x16' Air Tow Utility Air-Tow UT16-14 Tandem Axle Utility 6x16- Blue

2023 Air-Tow 8.5x16 Drop-Deck Utility Trailer (UT 16-14) 

Enjoy the same features as the flatbed trailers but with the added convenience of closed sides. It is safe and easy to enter the trailer at ground level. The full-width, low-angle ramp makes loading with a hand cart or dolly a simple operation. Airtow Utility models have a wide variety of options to fit your exact needs.

GVWR 18,780 lbs.
Capacity 14,000 lbs.
Weight (varies w/ opt.) 4,780 lbs.Deck 
Width 6’3″ (75″)
Deck Length (inc. 18″ Dovetail)16′Deck
 Material Diamond Steel Plate
Dovetail Size 18″
Overall Width 102″
Axles Tandem Wheels/Tires17″ – 16 Ply
Brakes (electric-std.)Electric
Suspension (rubber/air) Rubber Only
Lift Mechanism Hydraulic
Coupler2 5/16″ Ball
Color Royal Blue
6'x16' Air Tow Utility Air-Tow UT16-14 Tandem Axle Utility 6x16- Blue
Price: $24,900 On Sale! $21,799
Blue - Utility/Specialty
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: B001224
VIN: 7VADU212XRB001224
Condition: New
Year: 2023
Manufacturer: Air Tow
Model: Air-Tow UT16-14 Tandem Axle Utility 6x16- Blue
Length: 16'
Width: 6'
Height:
GVWR (lbs): 18,285
Weight (lbs): 4,285
Payload (lbs): 14,000
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'; }); });