var fDesc=new Array();
fDesc[0] = "More than just another MP3 Player, ALSong is your LIVE SONG LYRICS source.
Features:
-1,000,000 Song Lyrics Synchronizations - See the music
-Skins - Attractive skins & skinnable interface
-Language Learner - Slow down to easily listen
-Multi-format Music Support - MP3, OGG, WAV, APE, FLAC, CDs and more
-Create Mixed Music Albums - Organize portable music
-Free Music Downloads - Get free music in ALSong albums
-Cool Video Help - Watch videos to learn cool things that you can do with ALSong";
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 = '';
}
}