addNamespace("PalShow.UserControl.Register");
PalShow.UserControl.Register.ucRegisterLogin_class = Class.create();
PalShow.UserControl.Register.ucRegisterLogin_class.prototype = (new AjaxPro.Request()).extend({
	GetByEmail: function(username, callback) {
		return this.invoke("GetByEmail", {"username":username}, callback);
	},
	GetByPass: function(username, pass, callback) {
		return this.invoke("GetByPass", {"username":username, "pass":pass}, callback);
	},
	checkSupRegister: function(username, pass, callback) {
		return this.invoke("checkSupRegister", {"username":username, "pass":pass}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/PalShow.UserControl.Register.ucRegisterLogin,PalShow.ashx";
	}
})
PalShow.UserControl.Register.ucRegisterLogin = new PalShow.UserControl.Register.ucRegisterLogin_class();


