Subaru.be
nl
fr-be
menu
Modellen
Plan mijn onderhoud
Contact
function toggleMenu () { document.getElementById('mobile').classList.toggle('active'); var menuButtons = document.getElementsByClassName('nav-bars'); for (var btn of menuButtons) { btn.classList.toggle('active'); } } //scroll to top button window.addEventListener('scroll', function (event) { var scrolltobutton = document.getElementById("to-top"); if (document.body.scrollTop > 450 || document.documentElement.scrollTop > 450) { scrolltobutton.style.display = "block"; } else { scrolltobutton.style.display = "none"; } }, false); function scrollClick() { console.log("the button was clicked!"); document.body.scrollTop = 0; document.documentElement.scrollTop = 0; }
nl
fr-be
×
Modellen
Plan mijn onderhoud
Contact
Subaru.be
Germaine
Contact info
Contact info
FAQ
Bekijk eerst eens onze veelgestelde vragen op de website.
Veelgestelde vragen
Contacteer ons
Aanspreektitel
*
Aanspreektitel
Mr.
Mvr.
Andere
Voornaam
Volledige naam
Email adres
*
Ik heb een vraag over
Ik heb een vraag over
MySubaru Account
Algemeen
Nieuwe wagen
Technisch
Onderdelen
Particulier of professioneel?
*
Particulier of professioneel?
Privé
Professioneel
Achternaam
Bedrijfsnaam
Telefoonnummer
Bestanden uploaden (optioneel)
Bestanden uploaden (optioneel)
Uw vraag / opmerking
Ik ben akkoord met de voorwaarden * (
Privacy Policy
)
I am not a robot
*
var onloadCallback = function () { var windowwidth = window.innerWidth; if (windowwidth < 400) { grecaptcha.render('html_element', { 'size': 'compact', 'sitekey': '6LdkSoEdAAAAAD6YbMs3tEeVUerdb2XdEkqir1t9', 'theme': 'light' }); } else { grecaptcha.render('html_element', { 'size': 'normal', 'sitekey': '6LdkSoEdAAAAAD6YbMs3tEeVUerdb2XdEkqir1t9', 'theme': 'light' }); } }; let recaptcha = null let parent = null let oldWidth = null function loadCaptcha() { recaptcha = document.getElementById("html_element"); parent = recaptcha.parentNode; oldWidth = window.innerWidth; } function resizeCaptcha() { var width = window.innerWidth; if (width <= 400 && oldWidth > 400) { parent.removeChild(recaptcha); let html_element = document.createElement('div'); html_element.id = "html_element"; parent.appendChild(html_element); recaptcha = html_element; grecaptcha.render('html_element', { 'size': 'compact', 'sitekey': '6LdkSoEdAAAAAD6YbMs3tEeVUerdb2XdEkqir1t9', 'theme': 'light' }); } else if (width > 400 && oldWidth <= 400) { parent.removeChild(recaptcha); let html_element = document.createElement('div'); html_element.id = "html_element"; parent.appendChild(html_element); recaptcha = html_element; grecaptcha.render('html_element', { 'size': 'normal', 'sitekey': '6LdkSoEdAAAAAD6YbMs3tEeVUerdb2XdEkqir1t9', 'theme': 'light' }); } oldWidth = width; } window.onload = loadCaptcha; window.onresize = resizeCaptcha;