var fDesc=new Array();
fDesc[0] = "Neo7 Tools is an application that has three main functions.
First you can create machine code (G code) to tool path a pipe flange or bolt hole pattern.
If you don't use a CNC machine it can also print scale templates up to an 8 inch or 20.32 centimeter diameter.
The second function is a circle solver. Simply enter the diameter, radius, circumference area or chord of a circle and the software will calculate the unknown values.
The third function is a right triangle solver. If you provide 2 pieces of information about a right triangle the software will calculate the rest. This is good for construction and calculating rise over run.";
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 = '';
}
}