var fDesc=new Array(); fDesc[0] = "Resistor Color Code Calculator is a helpful little utility that allows you to find the value of a standard resistor without memorizing the color codes. Resistor Color Code Calculator also includes an Ohm Law calculator and a resistor color code quiz that it is under development at this time"; 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 = ''; } }