var fDesc=new Array();
fDesc[0] = "Visual Analyser is a complete professional real time software, transform your PC in a complete set of measurement instruments; no new hardware necessary (you can use the Sound Card of your PC) or you can use a specific external hardware. Visual Analyser runs on Windows 9x,ME,2k,XP,NT,Server,Vista,7. VA 2010NE-XT v2.4 version now available, no longer compatible with Windows 9x. The 2010 version runs on Linux by means of wine utility.
The latest 2010 NE-XT v2.4 version include a powerful ZRLC-meter capable to measure the Impedance of a device at different frequencies (that is, Capacitance, Inductance, Resistance, Real and Imaginary part, Q-factor, phase). It needs of your acquisition board (your soundcard for instance) plus a very simple circuit (two low-cost operational amplifier).";
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 = '';
}
}