var fDesc=new Array();
fDesc[0] = "AQ7932 is application software that performs analysis of trace data from the OTDR on a PC, and conveniently creates professional reports. The built-in report creation wizard function makes this task simple, quick and easy.
Display up to eight traces on screen, and perform a variety of analyses including multi-trace analysis and differential trace analysis for comparing recent waveforms with old ones, and use the 2 way trace analysis function for analyzing average values of data measured from both directions in the optical fiber.";
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 = '';
}
}