if(typeof Abacus_Store == "undefined") Abacus_Store={};
if(typeof Abacus_Store.myaccount_class == "undefined") Abacus_Store.myaccount_class={};
Abacus_Store.myaccount_class = function() {};
Object.extend(Abacus_Store.myaccount_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	loginNameExists: function(loginName) {
		return this.invoke("loginNameExists", {"loginName":loginName}, this.loginNameExists.getArguments().slice(1));
	},
	insertReview: function(pid, invid, rating, reviewText, model) {
		return this.invoke("insertReview", {"pid":pid, "invid":invid, "rating":rating, "reviewText":reviewText, "model":model}, this.insertReview.getArguments().slice(5));
	},
	isCompatible: function(modelID, pid) {
		return this.invoke("isCompatible", {"modelID":modelID, "pid":pid}, this.isCompatible.getArguments().slice(2));
	},
	url: '/ajaxpro/Abacus_Store.myaccount,Abacus_Store.ashx'
}));
Abacus_Store.myaccount = new Abacus_Store.myaccount_class();


