addNamespace("Futree");
Futree.ajax_class = Class.create();
Futree.ajax_class.prototype = (new AjaxPro.Request()).extend({
	GetSiteCount: function(str, callback) {
		return this.invoke("GetSiteCount", {"str":str}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Futree.ajax,Futree.ashx";
	}
})
Futree.ajax = new Futree.ajax_class();

