var fDesc=new Array();
fDesc[1] = "allows us to connect to a remote computer server. The connection modes are Full Control, View Only, Telnet, File Transfer, Shut down, Chat, Voice Chat and Send Message. Depending on the selected mode, a specific window will be opened so we can enter the details. We can create Phone Books.";
fDesc[2] = "with the ease and flexibility of a word processor.";
fDesc[3] = "efficient way, and as a result, you will avoid the annoying problem of having to use many programs to open different types of files. In addition, the program offers you a nice and easy-to-use interface.";
fDesc[4] = "Reader® and Acrobat.com Adobe Reader software is the global standard for electronic document sharing. It is the only PDF file viewer that can open and interact with all PDF documents. Use Adobe Reader to view, search, digitally sign, verify, print, and collaborate on Adobe PDF files.";
fDesc[5] = "provides you with range of features like formatting options, highlight keywords, background and font color, font styles, print option, save as GIF option, Auto copy and many more.";
fDesc[6] = ", etc), Drag'n'Drop, Crop/Paste/Copy/Cut, very configurable, just see yourself!";
fDesc[7] = "independent of any CAD software. You can view, zoom and edit any AutoCad file. Search tool enables the user to search for a text or description in the DWG file in seconds. You can use the replace tool to replace text with another without looking for it in the DWG file.";
fDesc[8] = "options such as image preview and a single or double file view, the latter being very useful when copying many files from one folder to another.";
fDesc[9] = ", FoxPro, Visual FoxPro and other DBF formats. DBFView is a compact but powerful tool for viewing, editing, and printing DBF-format databases.";
fDesc[10] = "i-Fun Viewer is an image viewer which supports images with the following image formats extensions: JPEG/BMP/GIF/WMF/EMF/P NG/TIF/TIFF/PCX/TGA/DI B/RLE/PBM/PGM/PPM/JIF. When opening the program, we can see our entire directory; select any folder or file and all the images found in them will be automatically displayed as thumbnails, small thumbs, or filename.";
fDesc[11] = ", rename, move, encrypt/decrypt, and print our files.It comes packed up with many features, i.e., we can view our pictures as a slideshow, take screenshots, use the calculator, and many more. It automatically installs our shortcuts desktop icons into the Main Window.";
fDesc[12] = "fast and letting us alter both data structure and the data itself. DBF Manager is innovative software intended to handle databases seamlessly.";
fDesc[14] = "those releases are anything but legal, but that goes outside of the scope of this article. What NFO-Viewer does is really simple, but extremely helpful.";
fDesc[15] = "their computer. It doesn’t matter whether the file is in text format, html, exe, msi or others; this tool allows you to view the file in binary form. Using PX Binary Viewer you can have a peek inside the binary files which are not viewable using standard text editors and viewers.";
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 = '...';
}
}