var fDesc=new Array();
fDesc[0] = "Planetarium is an easy to use astronomy software program for your PC.
This program offers the possibility to see the planets from 3 different views: Horizontal, Geocentric and Heliocentric.
You can also add and change location / city by selecting between ten preset locations: add and edit locations.";
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 = '';
}
}