var fDesc=new Array(); fDesc[0] = "CAD Exchanger GUI is an intuitive end-user Windows application that allows you to view and convert files across different CAD formats. Each supported format is packaged as a separate plug-in dynamically loaded during run-time when conversion to/from this format is requested. The user is able to explore model contents by browsing an internal model structure – vertices, edges, faces, shells, solids and so on."; 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 = ''; } }