var fDesc=new Array();
fDesc[0] = "Texas Instruments is creating a collection of useful engineering calculators and website tools for iGoogle. Add these Gadgets to your personalized homepage and keep up to date with our latest offerings.
Audio Calculators:
-VRMS to dBV
-VRMS to dBref
-dBV to RMS
-dBref to RMS
-SNR
-Gain
-R,C to 3 dB point
Maximum Output Power";
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 = '';
}
}