var fDesc=new Array();
fDesc[0] = "Five highly detailed and accurate Boeing 767-300ER Models (including GE, PW and RR variants).
Features:
- Unparalleled visual quality and realism
- Designed according to FSX standards
- DirectX 9/10 compatible
- Five highly detailed and accurate Boeing 767-300ER Models (including GE, PW and RR variants)
- High resolution textures of 14 Liveries
- Hundreds of Custom Animations
- Animation Control Panel";
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 = '';
}
}