addNamespace("WebApplication2.info");
WebApplication2.info.myinfo_class = Class.create();
WebApplication2.info.myinfo_class.prototype = (new AjaxPro.Request()).extend({
	GetReturnMobile: function(strUsername, callback) {
		return this.invoke("GetReturnMobile", {"strUsername":strUsername}, callback);
	},
	GetReturnQQ: function(strUsername, callback) {
		return this.invoke("GetReturnQQ", {"strUsername":strUsername}, callback);
	},
	initialize: function() {
		this.url = "/hnhn/ajaxpro/WebApplication2.info.myinfo,WebApplication2.ashx";
	}
})
WebApplication2.info.myinfo = new WebApplication2.info.myinfo_class();

