var fDesc=new Array();
fDesc[0] = "Airomate makes it possible to use a 192 kHz sampling rate capable soundcard to generate a high quality stereo MPX signal with full featured RDS/RBDS for FM radio transmitters. Airomate gives your radio station the professional look and sound.
The maximum frequency of a MPX stereo / RDS signal goes up to 57 kHz. So you need a soundcard that can handle a minimum frequency of 57 kHz. Nowadays there are cheap soundcards which have a samplerate of 192 kHz. These soundcards can produce frequencies up to 96 kHz. For a frequency of 96 kHz you will need a minimum samplerate of 192 kHz.
Most operating systems can not handle a samplerate of 192 kHz. Windows XP WITH Service pack 1 is the first Windows version which can handle this.";
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 = '';
}
}