X

6.5'x16' Alcom Utility 7x16

6.5'x16' Alcom 7x16 Utility



Standard Trailer Features and Upgrades

  • All-Aluminum Construction

  • 2"x5" Subframe Tubing

  • 24" O/C Floor Crossmembers

  • 1500# Wheel Jack

  • 4" Drop Leaf Spring Axles

  • Integrated Aluminum Rear Ramp

  • 4-Piece Extruded Hinge System

  • Recessed LED Marker Lights

  • 2"x8" Heat Treated Planking

  • 2"x2" Rail Kit

  • Welded Aluminum Fenders

  • 2" Straight Pull Coupler

  • (2) 7800# Safety Chains

  • 4-Year Limited Warranty

  • ATV Side Stow Ramp Kit

6.5'x16' Alcom Utility 7x16
Price: $5,950 On Sale! $5,399
Silver - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 030662
VIN: 5WFBU1622SS030662
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model: 7x16
Length: 16'
Width: 6.5'
Height:
GVWR (lbs): 6,000
Weight (lbs): 1,428
Payload (lbs): 4,572
Features: Ramp Gate, Side Ramps

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