var fDesc=new Array();
fDesc[1] = "viscosity. Work with feet and inches. Formatting and clipboard features. Excludes archaic units.";
fDesc[7] = "result-oriented solutions. Lal Kitab Explorer has the complete set of charts as in the Lal Kitab itself.";
fDesc[9] = "definitions related to Astrology, Tarot, Runes, Psychic, Numerology and Dream Interpretations.";
fDesc[10] = "software. This program gives you an accurate tarot reading, helps you learn tarot card meanings with glossary";
fDesc[11] = "of any selected cities with automatic time-zone and daylight-saving adjustments, alarm notifications, forthcoming holidays.";
fDesc[12] = "meanings of different spreads, decks, cards, symbols and other esoteric meanings.";
fDesc[13] = "different rune stones, spreads, and other esoteric meanings.";
fDesc[14] = "software, not only gives you free readings but also helps users and beginners understand the basics of tarot card reading.";
fDesc[15] = "based on the different schools of though viz. Chinese astrology, moon sign astrology, zodiac astrology and also numerology.";
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 = '...';
}
}