addNamespace("ASP");
ASP.CostCalculator_class = Class.create();
ASP.CostCalculator_class.prototype = (new AjaxPro.Request()).extend({
	CalculateWeekly: function(strPrice, strDaily, callback) {
		return this.invoke("CalculateWeekly", {"strPrice":strPrice, "strDaily":strDaily}, callback);
	},
	CalculateMonthly: function(strPrice, strDaily, callback) {
		return this.invoke("CalculateMonthly", {"strPrice":strPrice, "strDaily":strDaily}, callback);
	},
	CalculateYearly: function(strPrice, strDaily, callback) {
		return this.invoke("CalculateYearly", {"strPrice":strPrice, "strDaily":strDaily}, callback);
	},
	CalculateSoFar: function(strPrice, strDaily, strYears, callback) {
		return this.invoke("CalculateSoFar", {"strPrice":strPrice, "strDaily":strDaily, "strYears":strYears}, callback);
	},
	CalculateMain: function(strPrice, strDaily, strYears, callback) {
		return this.invoke("CalculateMain", {"strPrice":strPrice, "strDaily":strDaily, "strYears":strYears}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/ASP.CostCalculator,App_Web_tqilxqdi.ashx";
	}
})
ASP.CostCalculator = new ASP.CostCalculator_class();

