var fDesc=new Array();
fDesc[0] = "Leo's RC Simulator is a full featured radio control models simulator.
Main features:
- RC trainer for PC. Airplanes, helicopters and gliders
- DirectX 9 needed. Not included in the installation. Go microsoft web to download Last DirectX runtimes
- GM945 Chipset compatible. Tested in a Acer Aspire One 150.
- Aerofly, FMS models importer. Two clicks importer for models.
- G3X and aerofly photorealistic sceneries importer";
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 = '';
}
}