var fDesc=new Array(); fDesc[0] = "The Profiler Add-On allows you to create Object type Library Parts by extruding a profile along a straight or curved path. The profile should be drawn with the top up, not rotated. An axis drawn parallel to the y-axis will be considered vertical; if the axis is tilted, the object will be placed tilted. When drawing the path, the direction of the profile depends on the direction in which you draw the line. (This can be changed later in the Object Settings dialog box.)"; 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 = ''; } }