var fDesc=new Array();
fDesc[0] = "WAVE PROCESSOR 9335 - Display, Convert, Calculate, and Print Waveforms with a PC.
Main Features:
- Display, print, convert, and calculate on large volumes of waveform data (recorded in the MEMORY HiCORDER Series)
- Display waveform screens, X-Y graphs, and numerical results
- Comprehensive Search function
- Rich printing and hard copy functions to assist in creating reports
- Save in CSV format and export to spreadsheet application (EXCEL)";
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 = '';
}
}