var fDesc=new Array();
fDesc[1] = "users to share their processing power with the SETI@HOME initiative. It used volunteers' computers to analyze recordings of radio transmissions from outer space. However, nowadays, several projects can be added to the client.";
fDesc[2] = "It is based on the rashi-based calculations, according to the Vedic Astrology that focuses in the study of the specifics of the different planets relative to the Zodiac Signs and the possible influences of the Planets on the life of an individual.";
fDesc[3] = "Therapies.";
fDesc[4] = ", prostate cancer, skin cancer, muscle cancer and all related cancer terms. Courtesy ClickCoders.org.";
fDesc[5] = "detailed interpretation of the sign you belong to according to Western Astrology. The software also includes a detailed characteristics report.";
fDesc[8] = "check at all times. It includes scientific studies, videos and information about natural products, nutrition and health.";
fDesc[11] = "Sigmond freud and different stages of your dream cycle.";
fDesc[12] = "characteristics of people born with the sun in a particular zodiac sign (Cancer) according to Western Astrology.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}