var fDesc=new Array();
fDesc[1] = ", multilingual, and completely customizable. This utility gives us the opportunity to delete all the useless and obsolete data that we may be keeping in our system.";
fDesc[2] = "Microsoft Word, Excel, PowerPoint, Outlook, Internet Explorer, Project, Visio, Access, and Publisher, as well as Autodesk® AutoCAD® and Lotus Notes.Scan paper documents to PDF and automatically recognize text with optical character recognition (OCR) technology to create compact, searchable PDF documents.Archive e-mail or e-mail folders from Microsoft Outlook or Lotus Notes in PDF to facilitate search and retrieval. Convert complete web pages, or just the portions you want, including or excluding rich and interactive media. PDF versions of web pages are easy to print, archive, mark up, and share.Convert virtually any 2D and 3D designs — including layers, dimensions, and metadata — to a single PDF file to share product data more easily and securely.";
fDesc[3] = "integrity — with no technical expertise required. Thanks to a true WYSIWYG authoring environment, content authors and contributors can edit or update any website or blog without having to learn HTML.";
fDesc[4] = "functions like MD5, CRC, SHA-1 and some other less popular functions. It can also be used to compare a file with its MD5 file (.md5 file) so as to verify its integrity.";
fDesc[5] = "and even your network. This is called API and can very easily be used to access SMART from the platform of an IDE (Integrated Development Platform).";
fDesc[6] = "ANY Anti-Virus program to quarantine these threats.";
fDesc[7] = "a PDF document without the need of any external applications. Considering the other tools on the market which have limited editing functionality, this tool certainly has an edge over them.";
fDesc[8] = "checksums of files and verify their integrity in the future.";
fDesc[9] = "assure that the file has not been altered or damaged. The application is able to create a checksum based on several hash routines, so if you are planning to distribute a CD and want to offer a convenient way to check the integrity of the files, this application can help you a lot.";
fDesc[10] = "future when the user actually tries to access them. To avoid such issues, CheckFolder is a good application, which performs integrity validation of all the files present in the drive or a particular folder.";
fDesc[11] = "algorithms, uses XML-based and Unicode-enabled checksum file format, and has the integrated checksum calculator. Supports the SFV and MD5SUM.";
fDesc[13] = "Toolbars, Buttons and Plugins. Delete Files that are currently in use.";
fDesc[14] = "deleted on a Windows 2000/XP system.";
fDesc[15] = "reliable algorithms: MD5 (Message-Digest Algorithm) and CRC32 (Cyclic Redundancy Check) - both of which are used worldwide for checking integrity of the files.";
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 = '...';
}
}