The 'Show More' button for Yandex uses AJAX. AJAX is a useful set of functions and methods that allows a page to send and receive data to other files, scripts and servers without needing to change pages or reload anything.
Because of how AJAX works, you can't call on files/scripts from a domain other than your own, thus you wouldn't be able to use any of the AJAX calls Yandex uses unless you somehow could put your files on the same domain. And since the script to fetch more results is a server-side script it is not possible to view the source and see exactly what it does to fetch these results that it sends back to the page.
For the sake of knowledge I will say cross-domain AJAX is technically possible, but it requires a host to set special headers on their page that allow cross-domain scripts to call to it and access data or send request. This isn't very common currently so you can't ever expect to be able to use it.
In the end, all of that doesn't really matter but I did decide to explain since the original topic did ask how it was done. You obviously wouldn't be able to use the same AJAX calls but you can simply add the 'p' parameter to your search URL to change pages. It isn't shown in the normal web searches since the page uses AJAX to load them, but I noticed it on a button in their image search. It seems to work universally on the site.
http://www.yandex.com/yandsearch?p=1&text=text+or+content+to+search+for
http://www.yandex.com/yandsearch?p=3&text=text+or+content+to+search+for