var fDesc=new Array();
fDesc[1] = "adds the ability to buy movies online as well. The estimated cost for each movie varies between about $2 and $5. This version also includes a tool called Genius, which lets you create playlists automatically by analyzing your personal library for songs that are related.";
fDesc[2] = "media to mp3, mpc, ogg, wav and WMA file formats. Recording tool enables the user to record custom sound files. You can create, delete or modify playlists or export as .MPL files for later use.";
fDesc[3] = "training, and robust quizzes without programming knowledge or multimedia skills. * Screen recording and demos: Capture and record screen activity and effortlessly synchronize audio and video.";
fDesc[4] = "between your iPod/iPhone and your computer. This incredible application helps you transfer iPod/iPhone music,video,photos,iPo d podcast and TV programs to your local disk , and vice versa.";
fDesc[5] = "fast. This incredible software includes more than 3,000 stations and just keeps growing. With MAGIX AudioID you can find information like song title, artist, or album at the touch of a button and sort everything automatically in the internal database.";
fDesc[6] = "recorded. Easily remove sound distortions and imperfections with drag and drop editing.";
fDesc[7] = "choose between RSS 2.0, RSS 0.91, RSS 0.92, and Podcast feed formats. It allows us to create feeds containing non-Latin characters, such as Russian, Japanese, etc.";
fDesc[9] = "few simple steps. This incredible program allows you to record your own commentaries, edit and cut them like the pros, select matching songs, upload and post your own show in a few minutes.";
fDesc[10] = "task. It has never been easier to create, edit and publish podcasts.";
fDesc[11] = "music, add sound effects and transitions, improve quality and publish online or burn it on a CD for distribution. The interface is simple and intuitive. It runs on Windows 2000 and XP.";
fDesc[12] = "Unique to this software is its ability to create a new RSS feed from several others that have already been created.";
fDesc[13] = "with a special format) to an FTP server, and this includes the music file transfer too. PLEASE, BEWARE! there is an important bug, don't press the \"Add\" button! Instead, drag and drop files from Explorer.";
fDesc[14] = "music for commercial-quality results. Publish the completed podcast to your web site, with full RSS, XML & HTML support.";
fDesc[15] = "be a computer science guru and learn Internet technologies. Our editor makes work with RSS feeds maximally simple.";
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 = '...';
}
}