function showPlaagdierenDiv(){
    document.getElementById("plaagdieren").style.display = "block";
    if(screen.width == 1024){
        document.getElementById("plaagdieren").style.marginLeft = "71%";
    }
    else if(screen.width == 1280){
        document.getElementById("plaagdieren").style.marginLeft = "66%";
    }
    else if(screen.width == 1440){
        document.getElementById("plaagdieren").style.marginLeft = "64.5%";
    }
    else if(screen.width == 1600){
        document.getElementById("plaagdieren").style.marginLeft = "63%";
    }
}
                    
function hidePlaagdierenDiv(){
    document.getElementById("plaagdieren").style.display = "none";
}

function showWeringDiv(){
    document.getElementById("wering").style.display = "block";
    if(screen.width == 1024){
        document.getElementById("wering").style.marginLeft = "45%";
    }
    else if(screen.width == 1280){
        document.getElementById("wering").style.marginLeft = "45%";
    }
    else if(screen.width == 1440){
        document.getElementById("wering").style.marginLeft = "45%";
    }
    else if(screen.width == 1600){
        document.getElementById("wering").style.marginLeft = "47%";
    }
}
                    
function hideWeringDiv(){
    document.getElementById("wering").style.display = "none";
}


