EuroTruckParts
9737200846 Window Lifter | ISO 20653 1998-2021 Multi-Directional Dual Motor Assembly
9737200846 Window Lifter Dual Motor System
9737200846 Multi-Directional Lift Mechanism
This 9737200846 Window Lifter replaces OE components 9737200846, A9737200846, 9737200746, and A9737200746. Features dual 24V DC motors with 19:1 helical gear reduction for 43dB silent operation. Bilateral stainless steel tracks maintain ±0.15mm alignment under 42kg load. Universal 14-pin connectors support CAN-Bus integration across Mercedes truck platforms. Die-cast aluminum housing with thermal conductive coating maintains optimal temperature between -30°C to +85°C. Pre-installed Hall effect sensors provide real-time position data compatible with Xentry diagnostics. Self-adjusting nylon sliders ensure smooth travel across 520mm window height range.
9737200846 Cross-Model Compatibility
Right-Side Applications
- ▶ Actros MP4/MP5 Cab
- ▶ Antos 2032-2532
- ▶ Axor 940.890/899
Left-Side Applications
- ▶ Arocs 1845-3345
- ▶ Atego 972.890/899
- ▶ Econic 2733-3233
Maintains original 69±3 N·m torque specifications for vertical lift systems.
Technical Specifications
- ▶ Helical Gear Transmission
- ▶ IP69K Sealed Assembly
- ▶ Glass-Reinforced Carriers
Certifications
- ▶ ISO 20653 Dust/Water
- ▶ ECE R10.05 EMC
- ▶ DIN 75230 Endurance
Compatible with MERCEDES-BENZ Actros/Antos/Axor/Arocs/Atego/Econic (1998-2021) requiring OE: 9737200846, A9737200846, 9737200746, A9737200746
const validateContent = () => { const requiredOE = ['9737200846','A9737200846','9737200746','A9737200746']; const contentNodes = document.body.textContent; if(requiredOE.some(oe => !contentNodes.includes(oe))) { console.error('Missing OE references'); return false; } const wordCount = { description: document.querySelector('h2:contains("Multi-Directional") + p').textContent.split(/\s+/).length, compatibility: document.querySelector('h2:contains("Cross-Model")').nextElementSibling.textContent.split(/\s+/).length, technical: Array.from(document.querySelectorAll('h3')).reduce((acc, h3) => acc + h3.nextElementSibling.textContent.split(/\s+/).length, 0) }; if(wordCount.description < 200 || wordCount.compatibility < 100 || wordCount.technical < 100) { console.error(`Content thresholds not met`); return false; } return true; } document.addEventListener('DOMContentLoaded', validateContent);