var fDesc=new Array();
fDesc[0] = "Cucusoft iTunes to iTunes Transfer is an easy to use iTunes utility designed to help you backup/recover/transfer your whole iTunes library and media files. It provides features such as:
- Support create multiple backup jobs.
- Easy to synchronize your iTunes library with an existing backup job.
- Backup and recover whole iTunes library and media files, including songs, videos, playlists and so on.";
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 = '';
}
}