addNamespace("KeyList");
KeyList_class = Class.create();
KeyList_class.prototype = (new AjaxPro.Request()).extend({
	GetKeywordList2: function(Keyword, callback) {
		return this.invoke("GetKeywordList2", {"Keyword":Keyword}, callback);
	},
	GetKeywordList: function(Keyword, callback) {
		return this.invoke("GetKeywordList", {"Keyword":Keyword}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/KeyList,JobhaV2Kernel.ashx";
	}
})
KeyList = new KeyList_class();

