var fDesc=new Array();
fDesc[0] = "Sardinia Photoreal FSX & P3D part1 is an add-on for Microsoft Flight Simulator. This part includes the following areas: Costa Smeralda, Olbia (with LIEO airport), Arzachena, San Teodoro, Tempio Pausania, Gulf of Asinara, La Maddalena.
Main features:
- Comes with a Mesh LOD 12 (10m accuracy elevation data.
- The photo-real images (obtained by satellite) are LOD14 is 2.38 m / pixel.";
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 = '';
}
}