var fDesc=new Array();
fDesc[1] = "manage your collections of flash videos.You can create a Playlist by adding necessary tags and rate your videos. In Personal videos, you can queue up videos and download them. In Favorites you can automatically download the latest episodes of your favorite TV shows.";
fDesc[2] = "assets for effortless retrieval and presentation. Expression Media makes digital asset management easy—just drag and drop to import more than 100 different media formats, including digital RAW files.";
fDesc[3] = "shares, remote servers, CDs, movies, files and whatever you could possibly have and lose. Whereisit? is suitable for both the novice and the advanced user and there are a lot of languages available for the user to choose";
fDesc[4] = "take the user out of this frustrating situation, Smart CD Catalog Professional will prove out to be very effective. Smart CD Catalog Professional will allow user to arrange and list the collection of their CDs/DVDs in a systematic and ordered manner.";
fDesc[5] = "with Media Catalog Studio, a handy software application for classifying and tracking media files. This database is capable of identifying media files on any storage devices - hard-drives, floppies, external drives, CDs and so on. The program supports MP3, WMA, MP4, MPC, APE, OGG, AAC, FLAC, WAV, AVI, MPEG, WMV and Audio CD files and comes with a lot of great perks - duplicates finder, batch tag editor for MP3/WMA/OGG/AAC/APE/MP+/M4a files, to name a few. The best thing about this database is that it allows users to enter all essential information about music file - track number, name of the music piece, name of the author, album, year of release, commentary, composer, mood, genre, rating and so on. Conveniently, all files stored in this database can be sorted out by artist, album, year, bitrate, frequency, genre, category, rating or any field/category. The search in the database can be...";
fDesc[6] = "snapshots of your disks, imports descriptions and thumbnails, and allows for offline access, searching, reporting, organizing...";
fDesc[7] = ", including CD-ROMs, harddrives, audio CDs, MP3s, removable disks...";
fDesc[8] = "and music. The application not only lets you add a limitless number of items, but it also lets you browse them with a virtual shelf.";
fDesc[9] = "of your computer media collection, including CD-ROMs, audio CDs, diskettes, removable drives, hard drives, network drives, DVDs, or any other media that Windows can access as a drive. The most basic goal for WhereIsIt is to provide access to the contents of any media you have from the cataloged database, even if the media itself is not available on the system - you can browse lists of files and folders, search by any criteria, use descriptions, thumbnails, categories, etc.";
fDesc[10] = "program catalogs contents of your media and makes it available for offline browsing and searching.";
fDesc[11] = "Trio comes with all the MP3 tools you will ever need (tag editor, music organizer and audio converter) for a measly 7 cent/kb.";
fDesc[12] = "drives (including network ones), optical disks, CD-ROMs, ZIP disks and other media.";
fDesc[14] = "CD and MP3's content (including ID3 Tags), DVD Movies, Digital photos and pictures, Software and Documents.";
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 = '...';
}
}