var fDesc=new Array(); fDesc[0] = "Pedal is a Windows text editor for ANSYS APDL scripts. It integrates with the ANSYS help system to provide instantaneous help on any one of the 1000s of ANSYS commands. Pedal was written by Matt Sutton, an Engineer at PADT, to make his own job easier. Matt has years of experience writing APDL scripts and has long wished for a tool that would provide help for a given command right at his fingertips."; 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 = ''; } }