var fDesc=new Array();
fDesc[0] = "Solar Visitor is a space simulator where the user flies around our Solar System in a 3D view. The program and source code are offered free, there are builds for Windows and Linux. It uses the Ogre graphics library. The planets and objects were created with the Blender program.
Because Solar Visitor is a 3D program, performance depends on the capabilities of the user's video system.";
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 = '';
}
}