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

