var fDesc=new Array();
fDesc[0] = "Display spectacular in-flight views of many different Air Force fighters including the F-15 and F-16, new planes such as the F-117 and the F-22, and vintage aircraft like the P-51.
See the Thunderbirds fly in tight formation. Experience the thril of flying a jet fighter from within the cockpit. Watch fighters drop laser-guided bombs and fire missiles.
Save your favorite image as desktop wallpaper. Play your favorite music in the background. Includes an MP3 clip of America the Beautiful.";
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 = '';
}
}