Open All Sections Product Overview Ensure optimal cooling system performance for your Audi with this premium Water Flange from AUTOSTAR GERMANY. Designed as a direct replacement for OEM part 03L121132Ac, this flange is engineered for durability and a perfect fit, preventing leaks and maintaining efficient coolant flow. Trust in AUTOSTAR GERMANY's quality for reliable automotive components. OEM / Part Number Details Brand: AUTOSTAR GERMANY OEM: 03L121132Ac Manufacturer Part Number: AST03L121132AC function toggleSection(element) { const content = element.nextElementSibling; const isOpen = content.classList.contains('open'); if (!isOpen) { content.classList.add('open'); element.classList.add('active'); } else { content.classList.remove('open'); element.classList.remove('active'); } } function toggleAll() { const contents = document.querySelectorAll('.accordion-content'); const headers = document.querySelectorAll('.accordion-header'); const toggleText = document.getElementById('toggleText'); const allOpen = Array.from(contents).every(c => c.classList.contains('open')); if (allOpen) { contents.forEach(c => c.classList.remove('open')); headers.forEach(h => h.classList.remove('active')); toggleText.textContent = "Open All Sections"; } else { contents.forEach(c => c.classList.add('open')); headers.forEach(h => h.classList.add('active')); toggleText.textContent = "Close All Sections"; } }