var fDesc=new Array();
fDesc[1] = "solitaire games. All thirty solitaire games offer a thorough explanation of how to play in the beginning Some of the solitaire are foundation building type and other discard type.";
fDesc[2] = "It involves the insertion of needles at particular points in the body. It is very helpful for a wide range of disorders in the body like arthritis, infertility, etc.";
fDesc[3] = "Easy to install, the game has a bright oriental themed interface and symbols, and oriental music plays as soon as the game is launched.";
fDesc[8] = "water. The game pits two players (yin and yang) against each other, with the objective to create, destroy and transform the elements in play.";
fDesc[11] = "Lunar Calendar.This program gives a detailed interpretation of the sign you belong to according to Chinese 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 = '...';
}
}