var fDesc=new Array();
fDesc[0] = "Digital Combat Simulator World (DCS World) is a free-to-play digital battlefield game, focusing on a military aircraft simulation. It includes a FREE Su-25T attack aircraft and it is extensible through additional DCS modules as well as user-made add-ons and mods.
DCS World includes a vast mission area of the Caucasus region that encompasses much of Georgia - the location of the Russian invasion of Georgia in 2008.
The game consists of 4 files (5.13 Gb). All 4 files should be downloaded and put into one folder before launching setup. Filenames are of importance.";
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 = '';
}
}