var fDesc=new Array();
fDesc[0] = "Orbiter is a free and realistic space flight simulation program for the Windows PC.
Fed up with space games that insult your intelligence and violate every law of physics? Orbiter is a simulator that gives you an idea what space flight really feels like - today and in the not so distant future. And best of all: you can download it for free!";
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 = '';
}
}