var fDesc=new Array();
fDesc[1] = ", light, etc. It's easy to create, use and customise the particle effects. When you are done with the creative part, then you can export the file as an image(JPEG/BMP/PNG), an AVI video, or a SW/FLV file.";
fDesc[2] = "mouse and the drag and drop feature allows easy navigation and saving. The page contents can be edited and the auto-save feature stores all the browsed pages automatically. Editing is allowed to create comments and keywords, whereas unwanted banners can be removed.";
fDesc[3] = "several machines. Try ConnectCNC free for thirty days";
fDesc[7] = "Feel with easy Setup and Easy Drag and Drop functionality.";
fDesc[8] = "with FLOOD; the animals are hungry and youll have a need to FEED! The third is CLASSIC, a tricky falling object puzzle.";
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 = '...';
}
}