var fDesc=new Array();
fDesc[0] = "Yandex.Browser is a web browser with unique features such as Turbo mode, DNS Spoofing Protection, and SmartBox. Turbo mode optimizes the web page when speed of Internet is slow, making the pages load faster. DNS Spoofing Protection scans files and websites for viruses, blocks fraudulent webpages, protects your passwords and bank card details, etc. SmartBox makes it easy to find websites, even if you don't remember the URL.
Yandex.Browser provides you with interesting articles, news, and videos in your personalized Zen feed, right on the browser’s start screen. Zen analyzes yours interests and the feedback you share to refine its recommendations with accuracy.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}