var fDesc=new Array();
fDesc[0] = "X-ISM is a state of the art VST/AU plug-in which can interpret inter-sample peaks, allowing engineers to make informed judgements about the resultant sound quality of the mix.
X-ISM uses significant processing to provide a combination of up-sampling and filtering that mimics the operation of an oversampling DAC’s reconstruction process. The result is a meter that shows inter-sample errors and provides a useful tool that most DAW metering misses.";
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 = '';
}
}