addNamespace("WebCenter");
WebCenter.Index_2008_class = Class.create();
WebCenter.Index_2008_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 = "/WebCenter/ajaxpro/WebCenter.Index_2008,WebCenter.ashx";
	}
})
WebCenter.Index_2008 = new WebCenter.Index_2008_class();

