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