var fDesc=new Array(); fDesc[1] = "computer, you can use this application to access the contents of the SIM cards. Dekart SIM Manager can read from and write to SIM cards. The main use you would give this application is to organize the contents of the card."; fDesc[4] = "multiple devices. A built in character counter allows for message length to be monitored."; fDesc[6] = "email notification can be sent to numeric pagers."; fDesc[13] = ", preprogrammed messages, and repeating messages. NotePager Net is a paging gateway that facillitates sending messages to paging devices and cell phones."; fDesc[14] = "through a SNPP Gateway such as Nextel, PageMart, Skytel, and others."; 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 = '...'; } }