var fDesc=new Array();
fDesc[0] = "Use this app to learn to play piano with realistic sounds.
With Virtual Piano - Play Melody, you just pick a cool song and learn how to play it in 1 minute. It has four beautiful keyboard themes.
. Better HQ Sounds Quality
. Awesome key press graphic effect
. Single learn to play, Single perform free play
. Learn-to-play mode with the pre-loaded collection of famous songs
. Available for all Android phones
. 4 Instruments: Piano, Guitar, Piccolo Flute, Strings";
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 = '';
}
}