var fDesc=new Array(); fDesc[0] = "PropDesign is a Windows port of Ed Dokus' DOS/BASIC propeller design program. It calculates propeller pitch, diameter, chord, thrust and efficiency when given a propeller type (planform, airfoil, number of blades, etc.) and cruise conditions (airspeed, altitude, etc.). Output is in graphical or tabular form, allowing an experimental aircraft designer to ask "what if?" without having to carve/bolt on/fly each new design."; 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 = ''; } }