var fDesc=new Array();
fDesc[0] = "Turn your PC into a fun to play virtual piano, synthesizer, or even a band. Play piano with your mouse or computer keyboard, no extra hardware is needed. Play your favorite music or enjoy your own creations for a truly different type of relaxation and entertainment.
Main features:
- 6 octave piano keyboard with realistic piano keys
- Easy on the eye, convenient graphical interface
- Play 100 instruments (pianos, guitars, strings, drums, etc.)
- Drum machine (20-220 BPM) with shuffle control
- Bass-chord accompaniment
- Enjoy 20 music styles (rock, jazz, pop, blues, waltz, etc.)
- Mix and play 3 lead instruments simultaneously
- Add 3 parallel arpeggios with over 50 patterns
- Metronome
- Save and restore the whole workspace
- Recording and playing functions
Requirements:
- Windows XP/Vista/7
- 1 GHz or faster processor
- sound card
- 1024x768 or higher resolution monitor";
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 = '';
}
}