$(document).ready(function()
{

    $('.volgende4').click(function(e){
        
        var captchaValue = $('#botCheck').val();
        
        $.ajax({
                data: "class=bestellenStap4&method=checkCaptcha&value="+captchaValue+"",
                success: function(d){
                
                    if(!d.result){                    
                        alert('U heeft een verkeerde  verificatiecode ingevuld.');
                         window.location = '/bestellen/bestelling-controleren.html';
                    }
                    else
                    {
                         window.location = '/bestellen/afronden.html';
                    }
                
                }
        });
        
        
    
    });
    
    
    $('.volgende5').click(function(e){
        
        window.location = '../';        
        
    
    });
    
});
