var fDesc=new Array();
fDesc[0] = "The Vintage Upright sound library features a carefully sampled Östlind & Almquist piano, a classic Swedish brand dating back to the late 1800s and widely known for its quality, craftsmanship and heritage.
Main Features:
- Each EZkeys contains the same software including all functionality as well as the extensive standard MIDI library.
- Each EZkeys comes loaded with an individual sound library.
- Customers that already own one EZkeys can go straight for any other and get a discounted price. All your EZkeys sound libraries will be accessible through the same instance of EZkeys.";
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 = '';
}
}