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

function save_bestelling()
{
    var check = true;

    jQuery.ajax(
    {
        type: "POST",
        url: SITE_URL+"/ajax/save_bestelling.php",
        data: "bestellen=bestellen",
        async: false,
        success: function(data) {
            if(data != "gelukt")
            {
                alert(data);
                check = false;
            }
        }
    });

    return check;
}
