var fDesc=new Array(); fDesc[1] = "Windows installation. This is half a cosmetic application and half a functional one. It allows you to modify the way Windows looks and the way if operates."; fDesc[3] = "Brookdale!"; fDesc[5] = "for button color changes on mouse over and when buttons are clicked."; fDesc[6] = "The program has data import, export, password protection, backup copying and printing features."; fDesc[7] = "this degrades performance of the machine, other factors include registry problems/corruption."; fDesc[8] = "react to the presence of the mouse cursor. Adds a nice cosmetic touch to your application."; fDesc[9] = "additional capability to share data in real time over the network."; fDesc[12] = "of catalog presentations and digital distribution of interactive digital catalog presentations."; 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 = '...'; } }