var fDesc=new Array(); fDesc[1] = "designed specifically to introduce clients to the simple creation of floor plans, 3D models, and interior design concepts."; fDesc[9] = "the TurboFLOORPLAN Home & Interior 12.0. You get to build our house in virtual world and see for yourself. A versatile tool recommended for architects, hobbyists, illustrators, engineers, contractors, students, builders and educators."; fDesc[12] = "sheds. Select from over 7,500 plants, flowers, shrubs and trees to create the look you want. Then watch them grow by changing their age, or see what they'll look like through the seasons. TurboFLOORPLAN Landscape & Deck is compatible with drawings created from 3D Home Architect versions 5-8. Perfect for: Architects Hobbyists Illustrators Engineers Contractors Students Builders Educators"; 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 = '...'; } }