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

