var fDesc=new Array();
fDesc[0] = "CypherGraph is an easy to use software specially designed to work wit the C60 hardware.
Main features:
-Measure the frequency response (amplitude and phase) of electronic, electrical, electro-acoustic and other networks
- Impedance measurement of two terminal networks (including phase)
- Design and production testing of electro-acoustic transducers
- Bio-chemical impedance measurements
- Filter design and testing
- Battery impedance testing
- Cross talk and CMRR measurements
- Measure the characteristic impedance of cables
- Component evaluation
- Estimation of system time delays or latency
- Research, design, industry, education";
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 = '';
}
}