addNamespace("ASP");
ASP.ProductDisplay_class = Class.create();
ASP.ProductDisplay_class.prototype = (new AjaxPro.Request()).extend({
	PopulateDiv: function(strID, strProductID, callback) {
		return this.invoke("PopulateDiv", {"strID":strID, "strProductID":strProductID}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/ASP.ProductDisplay,App_Web_8xyhpyck.ashx";
	}
})
ASP.ProductDisplay = new ASP.ProductDisplay_class();

