var fDesc=new Array();
fDesc[2] = "Return the stolen magical Liong dragons in this brain-bending blend of matching madness. Each location presents an assortment of beautiful mask, clever fortunes and amazing rewards.";
fDesc[3] = "Master System, Sega Genesis, Sega Game Gear, Amiga, PC, Nintendo Entertainment System and the Game Boy and is based on the movie of the same name.";
fDesc[4] = "trade, invest and finagle against backdrop of constantly scrolling stock and news tickers. NOW INCLUDES OPTIONS TRADING AND CHARTS!!";
fDesc[5] = "result-oriented solutions. Lal Kitab Explorer has the complete set of charts as in the Lal Kitab itself.";
fDesc[7] = "Palmistry. This involves the art of telling fortunes and interpreting character from the lines on your palms.";
fDesc[9] = "horses. Enjoy the adventurous spirit of the Wild West with this truly realistic setting and remarkable western music.";
fDesc[11] = ", quote, limerick or just about anything!";
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 = '...';
}
}