/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function VerversMandje(){
    $.ajax({
            type: "POST",
            url: "http://www.aiki-budo.nl/Winkelwagen/ajax/mandje.php",
            data: "",
            success: function(data){
                    $("#Mandje").html(data);
            }
    });
}

function VeranderAantal(proId,Aantal){
	$.ajax({
		type: "POST",
		url: "http://www.aiki-budo.nl/Winkelwagen/ajax/aantal.php",
		data: "proid="+proId+"&aantal="+Aantal,
		success: function(data){
                        if(data='TRUE'){
                            window.location.href='http://www.aiki-budo.nl/Winkelwagen/';
                        }
		}
	});
}
