var fDesc=new Array(); fDesc[0] = "PowerCad-PNL provides a live 2D interface to view your project's electrical system layout in Autodesk Revit MEP. Unconnected panelboards are displayed and boards can be renamed. The program also helps you find panelboards within your model with a function that locates a view where the panelboard is visible and selects it. The cable length between boards and the load on each board is displayed in the 2D interface."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }