var fDesc=new Array();
fDesc[0] = "Elite Mix 1.0 is the Mixing Solution for the PC brought to you by TriceraSoft.
For the DJ that requires the hands-on interaction with the player to mix audio, video and/or karaoke along with powerful effects and transitions.
Elite Mix 1.0 provides the seemless looping features for the club DJ and includes powerful and popular features from our flagship products.";
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 = '';
}
}