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

// Client stub for the patopager PHP Class
function patopager(callback) {
	mode = 'sync';
	if (callback) { mode = 'async'; }
	this.className = 'patopager';
	this.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,'/includes/auto_server.php?','JSON');
}
patopager.prototype  = {
	Sync: function() { this.dispatcher.Sync(); }, 
	Async: function(callback) { this.dispatcher.Async(callback); },
	cartunista: function() { return this.dispatcher.doCall('cartunista',arguments); },
	charges: function() { return this.dispatcher.doCall('charges',arguments); },
	tiras: function() { return this.dispatcher.doCall('tiras',arguments); },
	animacoes: function() { return this.dispatcher.doCall('animacoes',arguments); },
	games: function() { return this.dispatcher.doCall('games',arguments); },
	videos: function() { return this.dispatcher.doCall('videos',arguments); },
	noticias: function() { return this.dispatcher.doCall('noticias',arguments); }
}

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

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

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

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

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

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

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

