var fDesc=new Array();
fDesc[0] = "Download a fast and secure browser.
Protection technology protects against threats on the Internet: it checks downloaded files for viruses, blocks malicious sites, protects passwords and bank card data from theft.
If the Internet is slow, Turbo mode is turned on - it speeds up the loading of sites and videos.
The voice assistant Alice lives in the Browser - she will deliver music, talk about the weather, open sites and turn off the computer. And you can chat or play with her.";
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 = '';
}
}