var fDesc=new Array();
fDesc[1] = "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[2] = "browse inside archives (ZIP, ARJ etc), make searches, automatically extract descriptions from documents and much more.";
fDesc[3] = "catalogue our files, folders and disks by adding them from anywhere within our computer, including drivers and any external or/and removable device. We are allowed to manage them, add comments, categories, sort the files by location, category, export/import, etc.";
fDesc[4] = ", including CD-ROMs, harddrives, audio CDs, MP3s, removable disks...";
fDesc[5] = "Features: Now, image thumbnails can be automatically rotated according to their EXIF data. It is possible to multiple scan the same folder, scan disks with both audio and data, import folders with the same path. It supports RAW files for popular digital camera.";
fDesc[6] = "program catalogs contents of your media and makes it available for offline browsing and searching.";
fDesc[7] = "disks and files the way you want it with the information you need. Preview image thumbnails or listen to audio previews offline.";
fDesc[8] = "quickly find a needed file in your disk collection, even without inserting any removable disks into the drives.";
fDesc[9] = "folders. Manage your disks and files the way you want it with the information you need. Preview image thumbnails or listen to audio previews offline.";
fDesc[10] = "a personal disk collection quickly and easily. WhereMyDVD indexes any kind of data, including installation disks, magazine CD-ROMs, audio CDs,etc.";
fDesc[11] = ", optical disks, CD-ROMs, or just a single folder.";
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 = '...';
}
}