addNamespace("CMS2008");
CMS2008.SeitenSuche_class = Class.create();
CMS2008.SeitenSuche_class.prototype = (new AjaxPro.Request()).extend({
	GetSucheInfo: function(sSuchbegriff, sTxtID, callback) {
		return this.invoke("GetSucheInfo", {"sSuchbegriff":sSuchbegriff, "sTxtID":sTxtID}, callback);
	},
	SetSuchbegriff: function(sSuchbegriff, callback) {
		return this.invoke("SetSuchbegriff", {"sSuchbegriff":sSuchbegriff}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/CMS2008.SeitenSuche,CMS2008.ashx";
	}
})
CMS2008.SeitenSuche = new CMS2008.SeitenSuche_class();


