var fDesc=new Array();
fDesc[0] = "Jaimini Light is a predictive astrology software fully based on Jaimini principles. The predictions have not been offered by basing upon blind faith; decades of intensive study, and practical experience gained from analyzing hundreds of horoscopes, have been instilled into this work. In its every step, after checking through a series of complex set of conditions, this program offers surprisingly realistic predictions in a very efficient manner.
This software can predict the precise nature of events - together with the timing of events (timing unit: 1 month only). It is an invaluable guide an indispensable tool for Astrology students and general learners; it is also useful for the learned Astrologers, and serious researchers in the field.";
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 = '';
}
}