var fDesc=new Array();
fDesc[0] = "You need a certain inductance and looking for the corresponding number of turns.
Well, looking for the AL-Value in a table and found it. But what about the formula? Not found or if you did, which units to use? Is a T50-2 red or yellow?
This program has all these answers and even more.";
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 = '';
}
}