var fDesc=new Array();
fDesc[0] = "PropellerScanner creates a Propeller Geometry from Images and it s a Windows 9x / NT / XP application.
Uses a side and a top view of a model aircraft propeller from your scanner and calculates chord and twist distributions. While this may be not as accurate as a true geometric measurement, it can be quite fast and the results are not that bad.";
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 = '';
}
}