var fDesc=new Array();
fDesc[0] = "Convert your PC into a Piano !
With Little Piano you'll be making music in no time. Using its simple interface, you'll be able to record songs, use multiple instruments, and share your songs.
Features:
- 127+ instruments
- Drums patterns of common music styles
- 10 channels for recording
- Save to Midi and Windows Media Audio files
- Freeware";
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 = '';
}
}