var fDesc=new Array();
fDesc[0] = "You want to design a bipolar transistor amplifier and you search for an easy way to do this. Maybe, you have already found some formulas in a book and you are confused and discouraged because of the complexity. Furthermore, you need transistor parameters, e.g. from a data sheet and you are discouraged because of the effort, which is necessary for the calculation.
For the design of transistor amplifiers there is a new software available: TransistorAmp. With TransistorAmp you are able to create your individual transistor amplifier with a few mouse clicks. TransistorAmp is freeware.";
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 = '';
}
}