X

7'x22' Towmaster Trailers Equipment/Tilt T-16DT 22"

2024 Towmaster 7x22 Equipment Tilt Trailer

The Tow Master Registered drop-deck tilt trailers are popular with rental dealers and small contractors. There are no ramps to hassle with; simply tilt the deck and drive on or off. This trailer is built on our cold-formed I-beam tongue and main frame for tough durability. The tilt deck trailer features a single lever twin-latch system, knife-edge approach plate, rubber-ride axles and adjustable hitch. A deck cushion cylinder eases the deck back into transport position and prevents equipment from slamming the deck down.

Stationary is 4ft, the deck is 16ft, and it has a extra 2ft dove tail. the over all length is 22ft.

* Limited Lifetime Frame Warranty-10 years
* One-Year full Warranty
* 11 Year Suspension Warranty
* Weatherproof registration holder
* Two-component polyurethane primer and paint
* Trailer color: Equipment Black
7'x22' Towmaster Trailers Equipment/Tilt T-16DT 22"
Price: $19,300 On Sale! $16,999
Black - Equipment/Tilt
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 162032
VIN: 4KNBT2925RL162032
Condition: New
Year: 2024
Manufacturer: Towmaster Trailers
Model: T-16DT
Length: 22'
Width: 7'
Height: 22"
GVWR (lbs): 16,000
Weight (lbs): 0
Payload (lbs): 0
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'; }); });