var fDesc=new Array();
fDesc[0] = "MpxTool is a modulation monitoring suite entirely in software. It contains a reference quality Stereo Encoder and Decoder, and allows realtime playback and recording of signals.
It's an invaluable tool for anyone interested in the technical side of FM broadcasting, whether regarding Audio Processing or Air-chain Calibration, work or passion.
MpxTool makes it easy to compare audio processors, calibrate your airchain, and monitor other stations off air.
Using a tuner with MPX output, MpxTool can be used as an off-air modulation monitor and analyzer. Is the competition cheating? Find out!
Compare two or more audio processors in a carefully controlled shootout. Record the output of each processor separately (with common program material) and play them back in MpxTool, switching on the fly, with phase linear reference quality stereo decoder, and a whole suite of modulation monitoring equipment built in. You can also output composite, to feed an exciter and listen on an actual tuner.";
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 = '';
}
}