var fDesc=new Array();
fDesc[0] = "If you really want to observe Jupiter's radio noise storms, this is a must have program. RJPro does just about everything you can imagine to help you plan and execute your Jupiter observations. Above are just a few of the many views available. Look at the list of features:
- Predictions and positional information customized to your location.
- Quick Look prediction chart helps you spot the best storms easily. Click on a noise storm and update other views such as the sky map to show you more about Jupiter's position or other parameters for that storm.
- Customizable prediction reports simplify long range planning.";
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 = '';
}
}