var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "photos with friends and family is as easy as pressing a button!";
fDesc[3] = "archives or zip files, what is this? Well, zip files are archives used for storing and distributing files and these can contain 1 or more files. WinZip has a feature called Wizard, which will take you through the entire program, helping you to compress wisely.";
fDesc[4] = "create professional-looking reports by adding dynamic graphics and animated charts. Besides, you can choose different formats for your report such as a bar chart, pie chart or cross-tab summary tables.";
fDesc[5] = "etc., created by a particular application, and then remove it completely. There is an \"AutoFix\" button. It can search for invalid uninstall information and delete/correct it. It cannot search for invalid registry entries caused by a previously uninstalled program though.";
fDesc[6] = "other kind of archive. One good thing about this application, besides the fact that it is universal by nature, is that it is really compact, which makes it accessible and easy to use. You can even use this app to extract files from MSI installation packages.";
fDesc[7] = "your internet connection speed on your desktop. MSI I-Speeder can be used to set your computer time according to web servers or through control panel.More than 6 servers for correct time settings and graph for you connection speed makes the software worth trying.";
fDesc[8] = "Cpio, Deb, Gca, Gz, Hdr, Hqx, Lzh, Lzx, Pak, Pp, Rpm, Sqx, Tgz, Wad, Wb1, Wba, Wbc, Z, Zoo, and more. Has a build-in viewer.";
fDesc[9] = "well. Q-Face® provides the webcam screen more extensive special effects, such as facial background effects, image effects, and facial expression effects. Q-Face® is not only a webcam or video camera, but it also allows users to use different effects and expressions. Q-Face® supports the current multimedia products including StarCam Clip II and StarCam Racer. Q-Face® also provides a video shot feature and function. When you use a webcam, you can launch the video or camera function directly on the main screen during chat or conference session. It is very easy to use. Users do no have to switch to other software.Q-Face® can be applied to MSN, Yahoo Messenger and other instant message software. No need to set it, you can have your photo shown instantly on your instant message display window. Features • Compatible to all instant messenger • Various amazing effects • Sequential...";
fDesc[10] = "installation packages for your own programs under Windows You will then obtain just one compressed file, that will contain the necessary files for your program to work, the instructions to put the components in the right folders, and information about your program.";
fDesc[11] = "out of it that can be deployed with MSI Remote Installer or Active Directory Group Policy.";
fDesc[12] = "setup files into executable installer (.exe) file format in just a single mouse click. This incredible application allows you to generate a standard .exe file from an existing .msi file in an accurate manner with no data loss.";
fDesc[13] = "make an msi package out of it that can be deployed with MSI Remote Installer or Active Directory Group Policy.";
fDesc[14] = "msi package out of it that can be deployed with MSI Remote Installer or Active Directory Group Policy.";
fDesc[15] = "view/edit summary information of the MSI packege. Allows you to view User interface available on the MSI package. Allows you to delete specific table from the list of tables.";
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 = '...';
}
}