ServicesCategories = function()
{
    this.ServicesCategories = this;
    this.reponse = null;

    var _handleSuccessText = function(o){
        this.reponse = o.responseText;
    };

    var _handleSuccessXML = function(o){
        this.reponse = o.responseXML;
    };

    var _handleFailure = function(o)
    {
        document.getElementById("reponse").innerHTML = "Erreur : " + o.responseText;
    };

    var callbackText =
    {
        success : _handleSuccessText,
        failure : _handleFailure
    };
    
    var callbackXML =
    {
        success : _handleSuccessXML,
        failure : _handleFailure
    };

    this.Selectionner = function(_donnees)
    {

    }

    function ToJSON()
    {

    }
}

ServicesCategories.prototype = new CallAJAX();
objServicesCategories = new ServicesCategories();
