X

6'x12' Air Tow Equipment T12-10

2024 Air-Tow 6x12 Drop-Deck Equipment/Flatbed Trailer

Capacity 10,000 lbs.
Weight (varies w/ opt.) 3,650 lbs.
Deck Width 6'3" (75")
Deck Length (inc. 18" ramp) 12'
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 Gray
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
Tongue Toolbox
Spare Tire included
Solar Charger
6'x12' Air Tow Equipment T12-10
Price: $21,100 On Sale! $17,999
Gray - Equipment/Specialty
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: B002504
VIN: 7VADF1725RB002504
Condition: New
Year: 2024
Manufacturer: Air Tow
Model: T12-10
Length: 12'
Width: 6'
Height:
GVWR (lbs): 13,325
Weight (lbs): 3,370
Payload (lbs): 9,955
Features: Solar Panel, Spare Tire, 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'; }); });