X

Schwartz 7' 9"x48' 6" Used Deckover/Gooseneck/Semi Trailer

USED 1977 Schwartz Manufacturing  Co. 7.5x48 Semi Trailer

Used but solid.

AS IS

FULL Length 48' 1/2"
Overhead deck is 9.5' + Flat Deck is 25' + Hydraulic Beavertail 14'
Full Width of the Trailer is 7'9" (The wood part of the Deck is 6'10")
Flip-up Side Panels: 1'2" 
Has Tie-Downs and a Winch 


*Trailer is not at the main 51 Trailer Sales Location. Will need to schedule a time for a Salesman to go out and look at it. 

Schwartz 7' 9"x48' 6" Used Deckover/Gooseneck/Semi Trailer
Price: $12,000 On Sale! $5,000
Red - Deckover/Gooseneck
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 01851
VIN: LBT1851
Condition: Used
Year: 1977
Manufacturer: Used
Model:
Length: 48' 6"
Width: 7' 9"
Height:
GVWR (lbs): 70,000
Weight (lbs): 0
Payload (lbs): 70,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'; }); });