function StatHandler() {
	this.ah = "stat";

	this.addBlackList = function(srcSite,srcIDs) {
		this.set("at", "addBlkList");
		this.set("srcSite",srcSite );
		this.set("srcID",srcIDs );
		return this.postRequest();
	}
}
StatHandler.prototype = new HiveHandler;

var statHandler = new StatHandler();