if(typeof Deluxe == "undefined") Deluxe={};
if(typeof Deluxe.SecurityAPI == "undefined") Deluxe.SecurityAPI={};
Deluxe.SecurityAPI_class = function() {};
Object.extend(Deluxe.SecurityAPI_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Login: function(BusinessEmail, Password) {
		return this.invoke("Login", {"BusinessEmail":BusinessEmail, "Password":Password}, this.Login.getArguments().slice(2));
	},
	Logout: function() {
		return this.invoke("Logout", {}, this.Logout.getArguments().slice(0));
	},
	HeaderRetrieve: function() {
		return this.invoke("HeaderRetrieve", {}, this.HeaderRetrieve.getArguments().slice(0));
	},
	IsLoggedIn: function() {
		return this.invoke("IsLoggedIn", {}, this.IsLoggedIn.getArguments().slice(0));
	},
	url: '/ajaxpro/Deluxe.SecurityAPI,DeluxeSite2010_deploy.ashx'
}));
Deluxe.SecurityAPI = new Deluxe.SecurityAPI_class();


