function cmdShowVideosForPage(b){var c={filter:$(".tbSeachVideos").val(),pageno:b},a="videos/videoslist";AjaxReplacer.prototype.perform({action:a,values:c,target:$(".videoscontainer"),oncomplete:cmdShowVideosForPageComplete})}function cmdShowVideosForPageComplete(a){if(a.success())BindPageEvents();else showMessage(a)}function cmdFilter(c,a){var b={filter:$(".tbSeachVideos").val(),pageno:a};AjaxReplacer.prototype.perform({action:"videos/videoslist",values:b,target:$(".videoscontainer"),oncomplete:cmdFilterComplete})}function cmdFilterComplete(a){if(a.success())BindPageEvents();else showMessage(a)}function BindPageEvents(){$(".btnSearch").unbind().click(cmdFilter).css("cursor","pointer");$(".tbSeachVideos").keypress(function(a){var b=a.keyCode?a.keyCode:a.which;if(b===13){cmdFilter(a,0);a.preventDefault()}});$(".pagingcontainer a").unbind().click(function(){cmdShowVideosForPage($(this).attr("pageno"))}).css("cursor","pointer")}$(document).ready(function(){BindPageEvents()})