addNamespace("BudgetExpress");
BudgetExpress.Shipnow_class = Class.create();
BudgetExpress.Shipnow_class.prototype = (new AjaxPro.Request()).extend({
	GetChildSelect: function(zone, callback) {
		return this.invoke("GetChildSelect", {"zone":zone}, callback);
	},
	getWeight: function(x, y, z, callback) {
		return this.invoke("getWeight", {"x":x, "y":y, "z":z}, callback);
	},
	checkPrice: function(diqu, carrName, zone, weight, callback) {
		return this.invoke("checkPrice", {"diqu":diqu, "carrName":carrName, "zone":zone, "weight":weight}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/BudgetExpress.Shipnow,BudgetExpress.ashx";
	}
})
BudgetExpress.Shipnow = new BudgetExpress.Shipnow_class();

