addNamespace("FShoesModules");
FShoesModules.CustServChannel_class = Class.create();
FShoesModules.CustServChannel_class.prototype = (new AjaxPro.AjaxClass()).extend({
	Login: function(strAccount, strPassword) {
		return this.invoke("Login", {"strAccount":strAccount, "strPassword":strPassword}, this.Login.getArguments().slice(2));
	},
	initialize: function() {
		this.url = '/ajaxpro/FShoesModules.CustServChannel,FShoesModules.ashx';
	}
});
FShoesModules.CustServChannel = new FShoesModules.CustServChannel_class();

