var fDesc=new Array();
fDesc[0] = "The Tesla Coil CAD features:
- Primary coil calculations using a flat spiral design.
- Secondary coil calculations.
- Primary capacitor and neon sign transformer matching calculations.
- Compatibility with 50Hz or 60Hz power systems.
- Metric or imperial units.
- Ability to recalculate design information without having to re-enter input parameters.
- The ability to save and load designs
Tesla Coil CAD places very few restrictions on physical design constraints. Therefore, it is still necessary to have a good understanding of Tesla coil design practices.";
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 = '';
}
}