addNamespace("search");
search_class = Class.create();
search_class.prototype = (new AjaxPro.Request()).extend({
	getSearchResult: function(keyWord, pageNum, x, y, mapWidth, mapHeight, tempScale, callback) {
		return this.invoke("getSearchResult", {"keyWord":keyWord, "pageNum":pageNum, "x":x, "y":y, "mapWidth":mapWidth, "mapHeight":mapHeight, "tempScale":tempScale}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/search,App_Code.ashx";
	}
})
search = new search_class();

