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] = "catalogue of 10,000 nebulae, galaxies and star clusters, a calculation of astronomical phenomena visible from the Earth, and a calculation of the positions of the principal satellites of Mars, Jupiter, Saturn, Uranus and Neptune, comets and asteroids.";
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] = "snapshots of your disks, imports descriptions and thumbnails, and allows for offline access, searching, reporting, organizing...";
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[9] = "and prints of selected photos. View EXIF metadata. Supports RAW formats for more than 100 cameras.";
fDesc[10] = ", lossless rotate, find and delete duplicates, add descriptions, slide show, and much more. Try it for free 20 individual days.";
fDesc[11] = "folders, files and even non-file items such as books or home inventory. It is 100% FREE to try!";
fDesc[13] = "information from the web, stores your movie information and plays your movies using the media players you choose. With Home Theater and Multi-Media PCs becoming more popular, people are finding it convenient to backup and store their movies on hard disk. Since movie files are large and are often stored on multiple disk drives, the traditional method of using disk folders to organize movies by genre becomes impractical. With MovieManager, once a movie is copied to disk, it doesn't need to be moved or copied again. MovieManager can be used to lookup information on the Internet and locate and catalogue your movies for you. It has a powerful database to store movie information so that you can lookup movies on the internet, play your movies and organize and list them in a convenient way.";
fDesc[14] = ", DVD's, ZIP disks, external hard drives, USB sticks etc.) into a single, searchable database.";
fDesc[15] = "Catalogues any drive letter or folder under a drive letter. You can record comments for files, you can print and searc...";
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 = '...';
}
}