addNamespace("CardActiveHomePage");
CardActiveHomePage.index_class = Class.create();
CardActiveHomePage.index_class.prototype = (new AjaxPro.Request()).extend({
	login: function(username, password, callback) {
		return this.invoke("login", {"username":username, "password":password}, callback);
	},
	initialize: function() {
		this.url = "/CardActive/ajaxpro/CardActiveHomePage.index,CardActive_Web.ashx";
	}
})
CardActiveHomePage.index = new CardActiveHomePage.index_class();

