//Appel procédure calendrier
function calendrier(mois,an) 
{ 
  dojo.xhrGet( { 
    // The following URL must match that used to test the server.
    url: "/general/default/index/calendrier/an/"+an+"/mois/"+mois, 
    handleAs: "text",
	load: function(response, ioArgs) { 
      document.getElementById("calendrier").innerHTML = response;
      //return response; 
    },

    // The ERROR function will be called in an error case.
    error: function(response, ioArgs) { 
      console.error("HTTP status errcode: ", ioArgs.xhr.status); 
      return response; 
      }
    });
}
