if(typeof Meevee == "undefined") Meevee={};
if(typeof Meevee.UI == "undefined") Meevee.UI={};
if(typeof Meevee.UI.Proxy == "undefined") Meevee.UI.Proxy={};
if(typeof Meevee.UI.Proxy.Search == "undefined") Meevee.UI.Proxy.Search={};
Meevee.UI.Proxy.Search_class = function() {};
Object.extend(Meevee.UI.Proxy.Search_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Search: function(keyword, selection, VideoType) {
		return this.invoke("Search", {"keyword":keyword, "selection":selection, "VideoType":VideoType}, this.Search.getArguments().slice(3));
	},
	GetUserInterestKeywordList: function() {
		return this.invoke("GetUserInterestKeywordList", {}, this.GetUserInterestKeywordList.getArguments().slice(0));
	},
	GetDownloadURL: function(pid) {
		return this.invoke("GetDownloadURL", {"pid":pid}, this.GetDownloadURL.getArguments().slice(1));
	},
	CheckIfNicknameExists: function(Nick) {
		return this.invoke("CheckIfNicknameExists", {"Nick":Nick}, this.CheckIfNicknameExists.getArguments().slice(1));
	},
	url: '/ajaxpro/Meevee.UI.Proxy.Search,Meevee.ashx'
}));
Meevee.UI.Proxy.Search = new Meevee.UI.Proxy.Search_class();

