var fDesc=new Array();
fDesc[1] = "Diagnostics module - Benchmarks - Tweaking features - Web links - Favorite pages - Built-in hardware database - Full Windows XP compatibility - Full Windows Server 2003 compatibility - Fully localized user interface.";
fDesc[2] = "It supports all Windows operating system, from 95 to Vista. It has a friendly interface and it´s easy to use even for average users.";
fDesc[3] = "on your system. Most font preview applications only allow you to view those fonts that you have actually installed on your system. FastFontPreview also shows you any font that it can find, be it on CDs, DVDs, network shares, etc.";
fDesc[4] = "quickly and easily using unique scanning methods. Inventory hundreds computers in minutes.";
fDesc[5] = "to view important information about your system. This program will also allow you to monitor predefined events, such as changes in the system resources, process started and finished, drivers loaded and unloaded, logon sessions, network shares, changes in the disk space and so on.";
fDesc[6] = "FTP accounts. You can print these displays, and export the data for use in other programs.";
fDesc[7] = "and browse HTTP/FTP sites. It also provides you with Fixed Network Neighborhood enumeration, ADSI User, Group and Service Enumerations and RPC Enumerations.";
fDesc[8] = "which are violating data access policy of their organization.";
fDesc[9] = "connection with your computer.The remote workstation, user, path, OS, permissions of the accessed folder.";
fDesc[10] = "network masks for all the different locations you are visiting choose a professional way - Switch your settings with just one Click!";
fDesc[11] = "or for specific file types (e.g. all MP3 files).";
fDesc[12] = "media for offline browsing and searching. It will catalog the contents of ZIP files and treat them as folders, and even works with industry standard 'descript.ion' files to automatically add descriptions to files and folders on your media! The search tool is powerful, and allows you to search by file/folder name and size, create/modified/last access date, description, and more! Instantly copy items from yourdisks to your hard drive without having to exit the program! Zipcat Pro 3 will ask for the appropriate disk. Export your volumes for printing, Email, or databases/spreadsheet programs. You can add descriptions to just about everything, and delete individual items too. ZipCat Pro works with CDs,floppies, removables, network shares, and more. If you can mount it, Zipcat Pro 3 can catalog it!";
fDesc[13] = "features you'd expect, but there's no database, just NTFS from start to finish. It is the fastest and most reliable archiving software ever.";
fDesc[15] = "printer shares) on your LAN.";
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 = '...';
}
}