var fDesc=new Array();
fDesc[1] = "tools and options. The user needs internet connection to work with the software. It features a category list with an option to choose annuals.";
fDesc[2] = "software features nine powerful garden and landscape design software tools, patent-pending PhotoView and the sortable PlantFinder database with over 2,000 landscape plants. The PlatFinder makes it easy for the user to locate anything.";
fDesc[5] = "libraries. The software includes features like 2D/3D Exterior Home Design, 2D/3D Landscape Design, Skylight & Dormer Cutout Tools, Deck Cutout Tool, Brand Name Content, Decorator Palette, Compass,";
fDesc[8] = "information and processes.";
fDesc[10] = "records, contacts, web garden resources. Intuitive interface and ready-to-use templates make it easy to set up and use.";
fDesc[11] = "ideas come to life with soft shadows, accurate lighting, plants swaying in the wind, all in realtime 3D.";
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 = '...';
}
}