var fDesc=new Array(); fDesc[0] = "BricsCAD is an all-in-one solution for 2D, 3D, mechanical design, and building information modeling. BricsCAD is available in three editions - Classic, Pro, and Platinum. Classic version provides all the familiar CAD functionalities, along with full LISP support (VL, VLR, VLA, and VLAX). Pro version adds 3D modeling, access to programming tools, and third-party applications. Platinum version comes with advanced features such as 3D constraints and assembly modeling. Platinum is required for the BricsCAD BIM and Sheet Metal modules."; 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 = ''; } }