addNamespace("Post");
Post_class = Class.create();
Post_class.prototype = (new AjaxPro.Request()).extend({
	quit: function(callback) {
		return this.invoke("quit", {}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Post,App_Code.ashx";
	}
})
Post = new Post_class();

