var fDesc=new Array();
fDesc[0] = "iXm is a broadcast quality recording microphone created by broadcasters for broadcasters. With intuitive operation and robust construction, iXm delivers pristine sound quality without the need to monitor levels or make other adjustments.
If you want to configure iXm via software, you will need to enter Configuration Mode. After turning iXm on and establishing a physical USB connection between device and PC, press and hold FWD and STOP buttons on the playback keypad to enter Configuration Mode indicated by a red MEM LED. Admin and User Software will allow for configuration as well as for status monitoring. Both are part of iXm’s scope of delivery.";
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 = '';
}
}