// Client stub for the test PHP Class
function test(callback) {
	mode = 'sync';
	if (callback) { mode = 'async'; }
	this.className = 'test';
	this.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,'/auto_server.php?','JSON');
}
test.prototype  = {
	Sync: function() { this.dispatcher.Sync(); }, 
	Async: function(callback) { this.dispatcher.Async(callback); },
	process_component: function() { return this.dispatcher.doCall('process_component',arguments); },
	process_file: function() { return this.dispatcher.doCall('process_file',arguments); },
	algEnc: function() { return this.dispatcher.doCall('algEnc',arguments); },
	clientdetails: function() { return this.dispatcher.doCall('clientdetails',arguments); },
	save_short_list: function() { return this.dispatcher.doCall('save_short_list',arguments); },
	appsearch: function() { return this.dispatcher.doCall('appsearch',arguments); },
	jobsearch: function() { return this.dispatcher.doCall('jobsearch',arguments); },
	cvsubmit: function() { return this.dispatcher.doCall('cvsubmit',arguments); },
	cvupload: function() { return this.dispatcher.doCall('cvupload',arguments); },
	update_skill: function() { return this.dispatcher.doCall('update_skill',arguments); },
	update_exp: function() { return this.dispatcher.doCall('update_exp',arguments); },
	edit_section: function() { return this.dispatcher.doCall('edit_section',arguments); },
	dell_section: function() { return this.dispatcher.doCall('dell_section',arguments); },
	updateappl_details: function() { return this.dispatcher.doCall('updateappl_details',arguments); },
	updateappcontact: function() { return this.dispatcher.doCall('updateappcontact',arguments); },
	updateappcore: function() { return this.dispatcher.doCall('updateappcore',arguments); },
	update_appl_details: function() { return this.dispatcher.doCall('update_appl_details',arguments); },
	add_skill: function() { return this.dispatcher.doCall('add_skill',arguments); },
	add_exp: function() { return this.dispatcher.doCall('add_exp',arguments); },
	filter_userlist: function() { return this.dispatcher.doCall('filter_userlist',arguments); },
	filter_recr_job: function() { return this.dispatcher.doCall('filter_recr_job',arguments); },
	filterresponses: function() { return this.dispatcher.doCall('filterresponses',arguments); },
	filter_shortlist: function() { return this.dispatcher.doCall('filter_shortlist',arguments); },
	appalerts: function() { return this.dispatcher.doCall('appalerts',arguments); },
	recralerts: function() { return this.dispatcher.doCall('recralerts',arguments); },
	dellalerts: function() { return this.dispatcher.doCall('dellalerts',arguments); },
	dell_cv: function() { return this.dispatcher.doCall('dell_cv',arguments); },
	dellshortlist: function() { return this.dispatcher.doCall('dellshortlist',arguments); },
	dellresponse: function() { return this.dispatcher.doCall('dellresponse',arguments); },
	publsihadvert: function() { return this.dispatcher.doCall('publsihadvert',arguments); },
	deleteadvert: function() { return this.dispatcher.doCall('deleteadvert',arguments); },
	addadvert: function() { return this.dispatcher.doCall('addadvert',arguments); },
	updateadvert: function() { return this.dispatcher.doCall('updateadvert',arguments); },
	copyadvert: function() { return this.dispatcher.doCall('copyadvert',arguments); },
	sendcontact: function() { return this.dispatcher.doCall('sendcontact',arguments); },
	sendadd: function() { return this.dispatcher.doCall('sendadd',arguments); },
	sendfriend_add: function() { return this.dispatcher.doCall('sendfriend_add',arguments); },
	thisismyfunc: function() { return this.dispatcher.doCall('thisismyfunc',arguments); },
	new_user: function() { return this.dispatcher.doCall('new_user',arguments); },
	new_recr: function() { return this.dispatcher.doCall('new_recr',arguments); },
	mainremindlogin: function() { return this.dispatcher.doCall('mainremindlogin',arguments); },
	advertlogin: function() { return this.dispatcher.doCall('advertlogin',arguments); },
	mainlogin: function() { return this.dispatcher.doCall('mainlogin',arguments); },
	process_lld: function() { return this.dispatcher.doCall('process_lld',arguments); },
	process_app_lld: function() { return this.dispatcher.doCall('process_app_lld',arguments); },
	process_menu: function() { return this.dispatcher.doCall('process_menu',arguments); },
	testform: function() { return this.dispatcher.doCall('testform',arguments); }
}

