// Client stub for the counselor PHP Class
function counselor(callback) {
	mode = 'sync';
	if (callback) { mode = 'async'; }
	this.className = 'counselor';
	this.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,'/FinancialAid/counserver.php?','JSON');
}
counselor.prototype  = {
	Sync: function() { this.dispatcher.Sync(); }, 
	Async: function(callback) { this.dispatcher.Async(callback); },
	getdata: function() { return this.dispatcher.doCall('getdata',arguments); },
	processdata: function() { return this.dispatcher.doCall('processdata',arguments); },
	getphone: function() { return this.dispatcher.doCall('getphone',arguments); },
	getcounselor: function() { return this.dispatcher.doCall('getcounselor',arguments); },
	getemail: function() { return this.dispatcher.doCall('getemail',arguments); }
}

