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

