var fDesc=new Array();
fDesc[0] = "Maitreya is a mature Open Source platform for Vedic and western astrology. The program has a lot of standard features for the daily work of western and Vedic astrologers.
The program supports a lot of calculation options, so it can be used as a basis for research on the various questions of astrological calculation and interpretation.";
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 = '';
}
}