// Client stub for the get1 PHP Class
function get1(callback) {
	mode = 'sync';
	if (callback) { mode = 'async'; }
	this.className = 'get1';
	this.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,'/ProxyServer.php?','JSON');
}
get1.prototype  = {
	Sync: function() { this.dispatcher.Sync(); }, 
	Async: function(callback) { this.dispatcher.Async(callback); },
	read1: function() { return this.dispatcher.doCall('read1',arguments); },
	read2: function() { return this.dispatcher.doCall('read2',arguments); },
	btn01: function() { return this.dispatcher.doCall('btn01',arguments); },
	btn02: function() { return this.dispatcher.doCall('btn02',arguments); },
	btn03: function() { return this.dispatcher.doCall('btn03',arguments); }
}

