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

