var fDesc=new Array();
fDesc[0] = "BlasterX Acoustic Engine delivers unprecedented levels of audio realism to your ears for an immersive gaming experience – for deep, powerful bass and surround sound that add significant depths and realism to your game.
Boasting a powerful acoustic engine that enhances any computer’s onboard audio through a set of comprehensive tools to empower your computer and turn any sounding PC or laptop into a professionally certified audio powerhouse for gaming and other entertainment needs.";
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 = '';
}
}