var fDesc=new Array();
fDesc[0] = "MidPoint enables you to investigate more fully about midpoints in astrology. MidPoint calculates natal and transit charts and displays a lot of data regarding them and midpoints.
The program can calculate the following: Natal Data and Aspects, Natal Midpoints and Midpoint Weighting Analysis, Natal Planet and Midpoint Sort, Natal Midpoint Sort by Degree, Natal Planet and Midpoint Aspects, and Natal Tree.
Also can calculate Transit Data and Aspects, Transit Aspects to Natal, Transit Aspects to Natal Midpoints, Transit Midpoint Aspects to Natal, Transit Formulas and Transit Tree.";
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 = '';
}
}