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] = "If you need to make boxshot for your Web site try this software - you can not imaging how is easy now."; fDesc[3] = "offers several advanced options such as: - loading by sequence - loading by FILO (First In Last Out) - multiple container sizes"; 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 = '...'; } }