if(typeof o6 == "undefined") o6={};
if(typeof o6.WebForm1 == "undefined") o6.WebForm1={};
o6.WebForm1_class = function() {};
Object.extend(o6.WebForm1_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	sayHello: function(name) {
		return this.invoke("sayHello", {"name":name}, this.sayHello.getArguments().slice(1));
	},
	getBubbles: function() {
		return this.invoke("getBubbles", {}, this.getBubbles.getArguments().slice(0));
	},
	getMoreBubbles: function() {
		return this.invoke("getMoreBubbles", {}, this.getMoreBubbles.getArguments().slice(0));
	},
	createBubble: function(type, parentid, title, content, name, city, state, email, keys) {
		return this.invoke("createBubble", {"type":type, "parentid":parentid, "title":title, "content":content, "name":name, "city":city, "state":state, "email":email, "keys":keys}, this.createBubble.getArguments().slice(9));
	},
	test: function(a) {
		return this.invoke("test", {"a":a}, this.test.getArguments().slice(1));
	},
	findBubblesByEmail: function(email) {
		return this.invoke("findBubblesByEmail", {"email":email}, this.findBubblesByEmail.getArguments().slice(1));
	},
	getChild: function(id) {
		return this.invoke("getChild", {"id":id}, this.getChild.getArguments().slice(1));
	},
	updateKeys: function(postid, keys, newWords) {
		return this.invoke("updateKeys", {"postid":postid, "keys":keys, "newWords":newWords}, this.updateKeys.getArguments().slice(3));
	},
	findBubblesByKeys: function(keys) {
		return this.invoke("findBubblesByKeys", {"keys":keys}, this.findBubblesByKeys.getArguments().slice(1));
	},
	reportAbuse: function(id) {
		return this.invoke("reportAbuse", {"id":id}, this.reportAbuse.getArguments().slice(1));
	},
	url: '/ajaxpro/o6.WebForm1,o6.ashx'
}));
o6.WebForm1 = new o6.WebForm1_class();

