var fDesc=new Array();
fDesc[1] = "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[2] = "scanning, a list of errors is shown - you can fix these with a single click. And if you hesitate to touch a thing as delicate as the registry, you always have the option to make a backup with Registry Mechanic before starting any test or repair.";
fDesc[3] = "itself to all the devices. According to the publisher, it is updated at least once a month. The application detects the installed hardware, displaying all the information. It analyses theCPU, RAM, Disks, drivers and graphic card, etc.";
fDesc[4] = "converted to MP3 in a single click, so they can be played on an MP3 player. The program shows the process like a wizard tutorial, and guides the user window by window through the conversion task.";
fDesc[5] = "camera, supporting added for Vista ServicePack 1 (SP1). It can manage and edit JPEG,RAW and TIFF image file formats.";
fDesc[6] = "diverse information about the hardware and software installed on your system. As expected from a free version, this version is limited for personal use, which mean that can´t be used for commercial reports and doesn´t have any kind of tech support.";
fDesc[7] = "for access points, locate their position on a radar analyze the power of each item located, displaying their IDs and connect, an automatic mode.";
fDesc[8] = ", Morpheus, Kazaa, Grokster, Opera, PalTalk, iMesh, Bearshare, LimeWire, TVAnts, etc.";
fDesc[9] = "Active Desktop Application designed to display entertainment, information, and utility in the PCs of the cybercafes located in India. It features system, Internet Explorer and Firefox shortcuts, Yahoo Messenger, GTalk and Windows Live Messenger shortcuts, web search, and interactive ads.";
fDesc[10] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[11] = "displayed immediately after creation or in the certain moments of time.";
fDesc[12] = "hairstyles included will show customers how the final result will be, with the capability of changing or varying the displayed look in order to get the closest approach to the desired customer style and/or color.";
fDesc[13] = "purpose than monitoring your processor. However, it is nice to keep an eye on the most important component in your computer. The application features a lot of displaying options, which all display the same, but fit your needs.";
fDesc[14] = "can be used for comprehensive monitoring, analysis of weather, and for displaying the weather data. It has got many unique features such as: providing different types of colorful gauges, graphs and charts, etc. for displaying the data.";
fDesc[15] = "software you will be able to use a completely different keyboard every time you use your computer. As soon as you execute the program, an excellent and very helpful Wizard appears on the screen. It will guide you step by step through the process of selecting a keyboard.";
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 = '...';
}
}