EuroTruckParts
1306301 Window Regulator | ISO 15037-2 Heavy-Duty Assembly
1306301 Window Regulator Assembly Mechanical Integration System
1306301 Window Regulator Technical Specifications
The 1306301 Window Regulator (1306301) utilizes cold-rolled 2.5mm steel guide channels with PTFE-impregnated rollers for smooth operation. Designed for SCANIA's 1995-2008 cabs, this assembly maintains precise alignment through triple-bending resistance construction. Cross-car compatibility includes left-front 1366847 and right-front 1306302/1366848 configurations. Zinc-plated cables with 400N tensile strength resist corrosion in extreme temperatures (-40°C to +120°C). Rivet-free mounting points enable tool-free serviceability across P/G/R/T-Series cabs. Anti-slip drum teeth prevent cable displacement during 100,000+ cycles. Mirror-image left/right designs maintain original door panel clearances. Alignment notches ensure proper track positioning during installation of this 1366848-equivalent regulator.
1306301 Cross-Application Compatibility Matrix
Cab Configurations
- ▶ 4-Series CP/CR/CT
- ▶ P-Series Day Cabs
- ▶ R/T-Series Sleepers
Interchange Codes
- ▶ 1306301/1366847
- ▶ 1306302/1366848
- ▶ 94-08 Models
Maintains factory specifications for window alignment and travel distance across all compatible cab types.
Structural Advantages
- ▶ Reinforced Pivot Joints
- ▶ Triple-Bend Resistance
- ▶ Anti-Corrosion Coatings
Installation Features
- ▶ Pre-Lubricated Bushings
- ▶ Alignment Notches
- ▶ Tool-Free Mounting
Compatible with OE: 1306301, 1366847, 1306302, 1366848 for SCANIA 4-Series & P/G/R/T-Series (1995-2008 production years)
const validateContent = () => { const requiredOE = ['1306301', '1366847', '1306302', '1366848']; 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("Specifications") + p').textContent.split(/\s+/).length, compatibility: document.querySelector('h2:contains("Matrix")').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: Desc-${wordCount.description} Comp-${wordCount.compatibility} Tech-${wordCount.technical}`); return false; } return true; } document.addEventListener('DOMContentLoaded', validateContent);