var fDesc=new Array();
fDesc[0] = "Agilent N9320B spectrum analyzer PC software is an PC-based remote control tool for N9320B RF spectrum analyzer. Can be used as:
A file manager - Send files to your N9320B from a PC, or send files from your N9320B to a PC
A spectrum monitor - Display and control the spectrum scans simultaneously to your N9320B
Capture the trace screen or print it out
Export trace data into a CSV file (in a format of *.csv, open with Microsoft® Office Excel)
The N9320B PC software also provides the following utilities:";
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 = '';
}
}