var fDesc=new Array(); fDesc[0] = "BERCalculator is used to calculate the Bit Error Ratio (BER) for a transmission system under test, with a given transmission rate, test period and number of received errors. It can also calculate a required test period for a BER test and the number of errors received in a period.
True BER is based on an infinite test time. Since this is impractical, a finite test period for a desired BER and confidence level is calculated using the binomial and Poisson distribution functions. The desired BER is chosen by the user and will be equal to or better than the true BER depending on the confidence level."; 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 = ''; } }