var fDesc=new Array();
fDesc[0] = "Checks and installs all the relevant updates of the game automatically. All in-game items will be available to you: weapon skins, cases, stickers, musical sets and graffiti for free.
Main features:
- There are no problems with the client.
- Ability to play on the network or with bots.
- The game becomes available to play immediately after installing the current updates.
- Launcher has protection from the introduction of advertising, attempts to crack or any other external influences.";
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 = '';
}
}