addNamespace("WebNode");
WebNode.Index_class = Class.create();
WebNode.Index_class.prototype = (new AjaxPro.Request()).extend({
	AjaxLogin: function(_uname, _upwd, callback) {
		return this.invoke("AjaxLogin", {"_uname":_uname, "_upwd":_upwd}, callback);
	},
	AjaxLoginYorN: function(callback) {
		return this.invoke("AjaxLoginYorN", {}, callback);
	},
	AjaxLogout: function(callback) {
		return this.invoke("AjaxLogout", {}, callback);
	},
	initialize: function() {
		this.url = "/WebNode/ajaxpro/WebNode.Index,WebNode.ashx";
	}
})
WebNode.Index = new WebNode.Index_class();

