// Client stub for the xdModuleManager PHP Class
function xdModuleManager(callback) {
	mode = 'sync';
	if (callback) { mode = 'async'; }
	this.className = 'xdModuleManager';
	this.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,'/xdCMS.php?','JSON');
}
xdModuleManager.prototype  = {
	Sync: function() { this.dispatcher.Sync(); }, 
	Async: function(callback) { this.dispatcher.Async(callback); },
	testAjax: function() { return this.dispatcher.doCall('testAjax',arguments); }
}

