addNamespace("CheckoutProcess");
CheckoutProcess_class = Class.create();
Object.extend(CheckoutProcess_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	SaveShippingAddress: function(fname, lname, company, address1, address2, address3, city, state, zip, country, phone, ext, isResidence, saveForFuture, isBilling) {
		return this.invoke("SaveShippingAddress", {"fname":fname, "lname":lname, "company":company, "address1":address1, "address2":address2, "address3":address3, "city":city, "state":state, "zip":zip, "country":country, "phone":phone, "ext":ext, "isResidence":isResidence, "saveForFuture":saveForFuture, "isBilling":isBilling}, this.SaveShippingAddress.getArguments().slice(15));
	},
	initialize: function() {
		this.url = '/ajaxpro/CheckoutProcess,App_Code.m5hpdaiz.ashx';
	}
}));
CheckoutProcess = new CheckoutProcess_class();

