var fDesc=new Array();
fDesc[0] = "The Live-Styler is a fully equipped, software based computer organ. With it you can optionally operate 3 top manuals, 2 middle manuals, 2 low manuals and 1 bass pedal.
The Live-Styler includes a complete automatic accompaniment with single finger, full finger and bass mode.
The Live-Styler can load and play all Yamaha and Ketron styles. It manages to recreate beloved Organ and keyboard instruments and to provide enormous instrument-sounds that are neatly organized in groups. This supersedes an additional sound module for the Live-Styler in a sensational manner.";
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 = '';
}
}