X

6'x14' Air Tow Equipment T14-12

2024 Air-Tow 6x14 Drop-Deck Equipment Trailer

UT14-12
GVWR 15,990 lbs.
Capacity 12,000 lbs.
Weight (varies w/ opt.) 3,990 lbs.
Deck Width 6'3" (75")
Deck Length (inc. 18" ramp) 14'
Deck Material Diamond Steel Plate
Ramp Size 18"
Overall Width 102"
Axles Tandem
Wheels/Tires 16" - 12 Ply
Brakes (electric-std.) Electric
Suspension (rubber/air) Rubber
Lift Mechanism Hydraulic
Coupler 2 5/16" Ball
Color Royal Blue
8 Heavy-Duty D-Rings
Adjustable Chain
Adjustable Coupler
Anti-Theft Switch
Bright LED Lights
Durable Powder Coat Paint
Extra-Wide Deck
Fenderless
Ground-Level Loading
Heavy-Duty Diamond Deck
Non-Tilting Deck
Remote Control
Rubber or Air Suspension
Swing-Arm Axles
6'x14' Air Tow Equipment T14-12
Price: $22,100 On Sale! $19,999
Blue - Equipment/Specialty
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: B002440
VIN: 7VADF1929RB002440
Condition: New
Year: 2024
Manufacturer: Air Tow
Model: T14-12
Length: 14'
Width: 6'
Height:
GVWR (lbs): 15,500
Weight (lbs): 3,495
Payload (lbs): 12,005
Features: Dovetail, Tongue Box

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'; }); });