var fDesc=new Array();
fDesc[0] = "Las Vegas McCarran is a scenery developed for Microsoft Flight Simulator X (FSX) and Flight Simulator 2004 ( FS9 ).
Main features:
- Fully customized ground and runways in high resolution, both in FSX and FS9
- Ground terrain seamlessly integrated with Flight Simulator.
- Native animated inverse-kinematics based jetways in FSX.
- AES support in FS9 planned
- Animated custom ground vehicles.
- Use of the advanced material properties in FSX, like bump and specular mapping.
- Fully 3d taxiways lighting.
- Intensive use of LOD techniques in order to offer the best possible performances.
- Improved Night Effects
- High resolution building textures.
- NEW ParkMe™ feature: working SafeGate docking systems with automatic airplane recognition, and parking accuracy evaluation ( FSX only )
- NEW YouControl™ feature: custom airport actions with easy on-screen menu to trigger animations, events,etc ( FSX only )";
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 = '';
}
}