var fDesc=new Array();
fDesc[1] = "utilities as Word 2007, Access 2007, PowerPoint 2007 and others. It allows users to input data into cells included in a grid made of rows and columns.";
fDesc[2] = "developers to rapidly create connected applications that deliver the highest quality, rich user experiences. With Visual Studio 2008, organizations will find it easier than ever before to capture and analyze information to help them make effective business decisions.";
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] = "errors that show up. The software can optimize the computer by first scanning it to find the problems and then fixing the invalid registry entries. The Advanced Registry Optimizer is also easy to use and has a user friendly interface.";
fDesc[5] = "While installing, we can choose to install any or all of the following components: script interpreter, standard scripts, example scripts, user's manual, and screensaver. We can also set this program to perform daily automatic optimizations.";
fDesc[6] = "and device recognize it awesome, providing all the information without mistakes, complete analyzes and information in one moment, multiple options to save the information and more.";
fDesc[7] = "You´ll have to investigate seven potential suspects, motives, weapons, victims, pieces of evidence and body disposal methods to solve the crime, eliminating possibilities from the gameboard using the clues in your notebook.";
fDesc[8] = "Analyze avi files and discover which codecs are needed and get a lot of info about the file. Easy to use interface.";
fDesc[9] = "emulation of many network devices and many devices can be added by setting up different configuration to emulate the desired network device. It supports Multilanguage. GNS3 works on Windows, Linux and MAC OSX platforms.";
fDesc[10] = "enabled computer (with Java 1.4 or later virtual machine). ImageJ can display, edit, analyze, process, save and print 8-bit, 16-bit and 32-bit images.";
fDesc[11] = "incomplete tags, and analyze quality of your audio files. It supports MP3, OGG, MPC, APE, AAC, FLAC; WavPack files, and ID3Tag V1 & V2 tags, Vorbis (Ogg) comments and APEv2 tags.";
fDesc[12] = "or French. The electrical circuits can be of direct or alternate current. Solve Elec features an oscilloscope and performs frequency response graphs.";
fDesc[13] = "managingutility. O&O DiskStat has striven hard to provide its users with its advanced technology and elegant performance to combat all the space wasted on your disk and to make your system more responsive.";
fDesc[14] = "to perform; no further requirements to install the program are needed. The HTTP Analyzer GUI is friendly and easy to use; the different data sections are organized in different sections to make easy the information analysis.";
fDesc[15] = "local and remote devices if found on your network. It’s comprehensive yet simple user-interface can allow you to browse through supportive services of each device. It is absolutely free of charge to download if your PC is supported with Bluetooth dongle.";
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 = '...';
}
}