var fDesc=new Array();
fDesc[0] = "This software will create your delightful musical atmosphere. It is ideal for playing with tabla, sitar, vocal, bansuri.
On stage for your concerts: Just plug your sound card stereo output to the theater sound system
At home for practice: Just plug your sound card output to small speakers or to your sound system
At music school or academy: for teaching or learning...
This tanpura software work with all major professional sound system, using ASIO and Core-Audio drivers";
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 = '';
}
}