var fDesc=new Array();
fDesc[1] = "hard not to compare the game with Legos, though it doesn't have the license it does have the fun. It is an excellent choice of game for those young builders out there.";
fDesc[2] = "subdirectories of your hard drive(s) on a single graph, allowing to see the largest directories at a glance. When the program launches, it gives you step by step instructions to interact with it. You must first type the drive you want to graph in the top combo box.";
fDesc[3] = "French policeman caught in an attack upon Paris. Together with Japanese actor Takeshi Haneshiro, they embark in an epic adventure to a journey of 500 years";
fDesc[4] = "can create your headings in some minutes. First of all, you should select a background for your heading by clicking File menu Open – it can be any picture in bmp, jpeg, or gif formats or keep a white background if you want.";
fDesc[5] = "requested barcode. Besides that if your printer is a color one you can have a better visual arrangements like font, barcode and background.";
fDesc[13] = "plan you can live and succeed with. It contains sophisticated nutrition and exercise journals, plus a variety of other related tools.";
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 = '...';
}
}