addNamespace("AjaxMethod");
AjaxMethod_class = Class.create();
AjaxMethod_class.prototype = (new AjaxPro.Request()).extend({
	GetNewList: function(ID, callback) {
		return this.invoke("GetNewList", {"ID":ID}, callback);
	},
	Getbrand: function(callback) {
		return this.invoke("Getbrand", {}, callback);
	},
	GetColor: function(ID, callback) {
		return this.invoke("GetColor", {"ID":ID}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/AjaxMethod,App_Code.afqpo7_i.ashx";
	}
})
AjaxMethod = new AjaxMethod_class();


