var fDesc=new Array(); fDesc[1] = "your marketing needs with just a few clicks of the mouse"; fDesc[3] = "emails easily and painlessly. No more copy and paste or drag and drop between the many opened applications."; fDesc[5] = ", Out of Office, Vacation, custom Status or Calendar Free/Busy time). Allow response to selected Contacts or Distribution lists."; fDesc[7] = "include autoresponders, unlimited mailing lists, newsletter management software, list filtering and more."; 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 = '...'; } }