var fDesc=new Array();
fDesc[0] = "New : Universal PSK/PhiM Demodulator with realtime constellation display
New : Easy logging of readings to file
+ Fast spectral analysis with FFT display for time and frequency variant signals
+ FFT sizes from 256 to 16384 points, dynamic range up to 160 dB, graphical zoom up to 32:1
+ Using inexpensive PC sound card, no additional hardware needed
+ Time analysis with oscilloscope and envelope display
+ Sonagraphic analysis with waterfall display
+ Measurement tools like markers, frequency rulers, level rulers, time rulers
+ Easy determination of THD, SNR (SINAD) and VCO phase noise (dBc/Hz)
+ Built-in test generator for sinewave and/or noise stimulation (full duplex mode)
+ Multi channel operation
+ Multi CW(morse) decoder
+ PSK31 Driver for HF modem communication (RTTY)
+ Universal FSK/F7B/FM Demodulator with baudrate estimation
+ Simultaneous recording directly from PC sound card to standard wave file
+ Snapshot functionality (20 seconds post trigger memory)
+ Analyzing of standard wave files or post trigger memory in offline mode
+ Running on all Windows 32 Bit platforms";
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 = '';
}
}