var fDesc=new Array();
fDesc[1] = "convert audio files from many different file formats into mp3, wav or wma files such as wav to mp3, mp3 to wav, wma to mp3 and much more.";
fDesc[2] = "computer´s hard disk) which you can then sort, transfer, burn or play choosing from three basic screens: Music Source, My Library and Transfer.";
fDesc[3] = "content on your PSP. Sony Media Manager for PSP is now free in Japan and have been replaced everywhere else by Sony Media Manager Pro, which is a commercial version that includes the ability to transfer Playstation 1 games.";
fDesc[4] = "organize, catalog, and manage their collections on their PCs.";
fDesc[5] = ", that this program doesn’t convert audio tracks that have been bought from music services in the Internet. Sony MP3 conversion tool does allow you to convert an album folder at a time, though not individual tracks.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}