var fDesc=new Array();
fDesc[0] = "After you install allTunes you will be able to instantly search for music, preview full songs and easily purchase high quality versions of your favorite tracks for just pennies a song. The first time you launch allTunes it will download our entire music catalog.
The program is designed to make it easy to search, buy and download popular music. You may use credit cards to pay for downloads, in a fraction of a second the application finds the artist or song from half a million titles.";
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 = '';
}
}