var fDesc=new Array();
fDesc[0] = "Predator is a "phat sounding" killer synthesizer that combines inspiring presets and first-class features to make this your 'go-to' synth for contemporary music production.
The user interface has been designed so that almost all controls are visible on screen, making it fun and incredibly easy-to-use. And if you're unsure about a particular synth function, simply right click your mouse to access the help screen.";
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 = '';
}
}