var fDesc=new Array();
fDesc[1] = "Firefox 3. This changes were made to improve stability and web compatibility, provide user interface enhancements, and speed. Firefox 3 now includes support to resume downloads, and a better download manager. Its general appearance has been slightly improved, with some new icons.";
fDesc[2] = "YAHOO the software giant has introduced its new innovation a form of preventive software to spyware,viruses,malwar e,spam and unsolicited emails.As they say prevention is better than cure,it holds apt in here as with YAHOO SEARCH PROTECTION you can have a protective layer around you PC";
fDesc[3] = "provides the following features: power management scheme and battery resource information and health. This utility also detects unsupported power-adapter/dock/bat tery scenarios and displays warning messages.";
fDesc[4] = "viewer supports most SVG elements, as well as CSS properties and DOM elements. Additionally, the ActiveX control has been signed so you don't have problems with the ActiveX security warning introduced with Windows XP Security Pack 2.";
fDesc[5] = "provide basic system functionality under Windows XP operating system. WARNING!: Because the computer is optimized for use with Windows Vista® operating system, some functionality will be lost under Windows XP operating system.";
fDesc[6] = "surface, all files and partitions are eliminated, and it defines or re-creates the tracks and sectors on the disk. Then, it is possible to fix or repair a damaged disk.";
fDesc[7] = "is fully compatible with Windows Vista operating system.";
fDesc[8] = "we are aware of it. In addition, HDDlife has a proper treatment for every diagnosis and can solve almost any problem. That way, not only monitors and inform us about our hard disks’ health but also take care of it and cure the disks whenever it’s necessary.";
fDesc[9] = "smoother, and your privacy won´t be at risk. The data in that files can be viewed for undesired eyes, unless you eliminate them. When you install the program, you can chose what to install, and then proceed to your first cleaning.";
fDesc[10] = "administrators with real time status of Microsoft Exchange Server services, mail queue sizes, and host server health indicators.";
fDesc[11] = "tools available to download form their Internet Site. What the VM Monitor does is allowing IT administrators to continuously monitor VMware ESX servers along with their virtual machines by providing real-time monitoring of VMware ESX health indicators.";
fDesc[12] = "disk problems. The hard disk's integrated controller works with various sensors to monitor various aspects of the drive's / disk's performance, and from this information it determines if the disk is behaving normally or not.";
fDesc[13] = "Service, and alert you instantly when it receives a weather warning, right on your desktop. The program has a neat little interface, and when minimized, it sits quietly in your taskbar displaying the current temperature of a location of your choice.";
fDesc[14] = "you're watching changes, and you'll see a visual comparison of what's been added and deleted.";
fDesc[15] = "quietly in your taskbar displaying the current temperature of your location. If WITN sends you an alert, you will hear an audible sound from your computer, after which a text crawl, just like a newsreel crawl, will display your weather warning across your computer.";
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 = '...';
}
}