var fDesc=new Array();
fDesc[0] = "My Music Quiz plays short samples of music from your iTunes or Windows Media Player library to create a fantastic entertaining game for your friends and family. Team up with your mates or challenge them to test their music knowledge.
Try the game today and join the thousands who have. It's quick, easy to do and free for 14 days. After you have tried it out, you can buy My Music Quiz for just £4.99 .
Latest version adds Beat The Clock mode, guess the track and artist before your time runs out. As always, the latest version is free to existing cutomers.";
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 = '';
}
}