var fDesc=new Array();
fDesc[0] = "A program that decodes 4 or 5 band coded resistors.
And now it can do the reverse, type a value and get the colourcode of both a 4 & 5 band resistor.
NEW: It can also find the nearest neighbour E12 & E24 series resistor.
What more could you ask for!
Future Features or Things Yet to Come:
+ VtoC: Decimal or Fractional Ohmage support
v1.8
+Few minor bug fixes, E12&E24 series now works properly
with very small and very large resistances.
+Added some very helpful pointer symbols to the value to
colours area, thanks for the suggestion Sam ;-)";
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 = '';
}
}