var fDesc=new Array();
fDesc[0] = "Bristol is the forth of the new generation of products from UK2000 Scenery, using new methods and modelling systems which allows us to make truly amazing airports. This is a reduced version of the stunning Bristol Xtreme product. This free version contains 25% of what you get in the full Xtreme product. Features:
- Basic only detail Buildings
- Realistic Ground Markings (No Just Centreline)
- UK Runway markings
- Stunning Night Effects
- 3D Approach Lights
- Excellent Frame Rates
- Low resolution textures.";
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 = '';
}
}