var fDesc=new Array();
fDesc[0] = "FlightBeam KSFO is an add-on that brings you one of North America's biggest west coast airport hubs. It provides features such as:
- Ultra realistic night lighting
- Photoreal ground mesh with high res taxiways
- Built-in shadows with no framerate loss
- Moving trams and custom animations
- Optimized for higher frame rates
- Animated hold short lights at every intersection
- Reflective windows
- Static aircrafts with realistic shadows";
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 = '';
}
}