var fDesc=new Array();
fDesc[0] = "E-Piano module is one of the several components offered by people from 4Front Technologies.
with a rich, warm and silky sound, it is quite unique by its character.
The module is made with a hybrid technology, which involves sample playback and synthesizing within one case.
Given the high quality of the module, installation file has reasonable small size.
You can access to a demo right from the home site from wich you can listen to the component in action and you will know if it's the correct tool for you.";
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 = '';
}
}