var fDesc=new Array();
fDesc[0] = "M-Audio FastTrackUltra Driver (x86) is a driver designed for your Fast Track Ultra device, which is installed on computers that run Windows on 32-bits. The Fast Track® Ultra 8 x 8 audio/MIDI interface takes M-Audio’s acclaimed mobile recording line to the next level with high-speed USB 2.0 connectivity, MX Core™ DSP mixer and four preamps with award-winning Octane™ technology. Featuring both analog and digital I/O, it allows recording on all eight channels simultaneously.";
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 = '';
}
}