var fDesc=new Array();
fDesc[0] = "This expansion pack revisits the legacy of the Korg drum machines. The presence of key parameters will give you in-depth access to the synthesis and sampling chain of each kit, for maximum tweaking and creativity.
The KPR faithfully emulates the punchy analog sounds of the KPR-77 which was Korg’s answer to the TR-606. As a bonus, it also integrates a few percussion sounds based on the older and rarest KR-55 and KR-33 models.
The DDM-120 pays tribute to the digital series of Korg drum machines, giving you access to the lo-fi 8 bit sounds of the DDM-110 and DDM-220.";
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 = '';
}
}