var fDesc=new Array();
fDesc[1] = ", find, and share your notes and information more efficiently and effectively. The program features powerful search capabilities that help you locate information quickly and easy-to-use shared notebooks that allows you to manage information overload, whether online or offline.";
fDesc[2] = "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[3] = "other applications of this kind. With this tool you can write images on a disc, mount on a virtual drive, create an image from a disc or convert it to different formats, create bootable CDs/DVDs, etc.";
fDesc[4] = "icons just beside the normal icons for minimizing, maximizing and closing. This is really a wonderful tool to compare some data as in the normal windows the open window is automatically minimized when another is clicked.";
fDesc[5] = "scanning, a list of errors is shown - you can fix these with a single click. And if you hesitate to touch a thing as delicate as the registry, you always have the option to make a backup with Registry Mechanic before starting any test or repair.";
fDesc[6] = "would like to create, this program automatically choose folders containing music files, documents or video files. You can also select additional files, folders and subfolders manually.";
fDesc[7] = "effects and it does this on its own, using pre defined styles. The videos are polished, tightly edited with closeups & synchronization with the music is just awesome.";
fDesc[8] = "CD scratches and data loss. You can create and use BIN, IMA/IMG ,CIF ,NRG,IMG/CCD, MDF/MDS, VCD, VaporCD , VDI , C2D, BWI/BWT, CDI, TAO/DAO, PDI virtual images. An image in virtual CD/DVD drive enables you to work 100x faster than an ordinary CD/DVD drive.";
fDesc[9] = "Napster user's hard drive. Join the MP3 community. For Windows 95, 98, 2000, or NT.--RECENTLY ADDED IN BETA 8: ...";
fDesc[10] = "designed for that platform. It runs on Mac OS X, Windows, Linux, and some other platforms, maintaining a virtual instance of an operating system within the host OS.";
fDesc[11] = "do is insert your DVD movie into the drive and select copy. It's that simple. The graphical user interface is really simple and all the options are pretty self explanatory.";
fDesc[12] = "fool you. It creates results of the highest qualities. If you need to create smaller images out of your big pictures, this application will certainly do the trick.";
fDesc[13] = "(but related) photographs. Once they are imported, the user can select and set many options to obtain the best panorama output file, such as lens distortions, zoom on each picture, barrel distortion correction, correction for different image brightness, etc.";
fDesc[14] = "creates icons or cursors from all or a part of an image and it can also save an icon as an image. IconConveter can handle the following file image formats: JPG, PNG, GIF and BMP.";
fDesc[15] = "will benefit from the many features MultiTerm has to offer. The application creates terminology databases that you can use with SDL Trados. The application creates those databases in a way that is most useful for translators.";
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 = '...';
}
}