var fDesc=new Array();
fDesc[0] = "Uhbik is a fine collection of effect plug-ins for the discerning audiophile. The bundle includes nine effects that come wrapped in a beautiful, streamlined interface. Four of these units (D, F, P, T) are modulation effects that include an ultra-slow to ultra-fast low-frequency oscillator. LFO rate can be set to an absolute value (in seconds or Hertz), synced to host tempo or swept manually / automated.";
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 = '';
}
}