/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function setResultat(query, pageD) {

    //$('#content_rces').fadeOut("normal");

    $.ajax({
        type: "GET",
        url: "/caren/php/ajaxResultat.php?page=6&CheckP="+$("#CheckP").attr('checked')+"&CheckL="+$("#CheckL").attr('checked')+"&CheckVP="+$("#CheckVP").attr('checked')+"&CheckC="+$("#CheckC").attr('checked')+"&query="+query+"&pageD="+pageD,
        error:function(msg){
            alert( "Error !: " + msg );
        },
        success:function(data){
            //affiche le contenu du fichier dans le conteneur dédié
            $('#content_rces').html(data);
            //$('#content_rces').fadeIn("slow");
        }
        });
}


