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

function change_lang(taal)
{
    jQuery.ajax(
    {
        type: "POST",
        url: HTTP_PATH+"modules/paginas/ajax/change_lang.php",
        data: "taal="+taal,
        dataType: 'json',
        async: false,
        success: function(data)
        {
            if(data.status != 'gelukt')
            {            
                alert(data);
            }
            else
            {
                window.location.reload();
            }
        }
    });
    return false;
}


