var fDesc=new Array();
fDesc[0] = "Starry Night Pro is a powerful program designed for those with a serious interest in astronomy. Increase your in-the-field observing success with features such as the Events Finder to choose targets, or customized Observing Lists for a specific night or object of interest. Print out three-view star hopping charts customized to your equipment to effortlessly guide you to challenging objects.";
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 = '';
}
}