addNamespace("hydrochem.usercontrol");
hydrochem.usercontrol.ucDetailServices_class = Class.create();
hydrochem.usercontrol.ucDetailServices_class.prototype = (new AjaxPro.Request()).extend({
	getname: function(strid, callback) {
		return this.invoke("getname", {"strid":strid}, callback);
	},
	pagedetail: function(strid, callback) {
		return this.invoke("pagedetail", {"strid":strid}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/hydrochem.usercontrol.ucDetailServices,hydrochem.ashx";
	}
})
hydrochem.usercontrol.ucDetailServices = new hydrochem.usercontrol.ucDetailServices_class();

