var fDesc=new Array();
fDesc[1] = "saga. As you probably know, with this game you are going to travel to the ancient Persia, a land of adventure and magic.";
fDesc[2] = "charts. With the help of this software the user can easily modify the looks of the charts as per requirement, by selecting any desired color theme, content, pictures, box borders, number of generations and lots more.";
fDesc[3] = "colourful gems to create combos that will shatter the golden tiles! Complete the level before all the sand has run to the bottom bulb of the hourglass or take your time in the Relaxed game mode.";
fDesc[4] = "right up to 114-inch chest size.The program's easy to use Windows style interface will provide you with all the features and options you need to customize. With this program you will be able to generate your own schematics using any gauge or style.";
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 = '...';
}
}