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

