var fDesc=new Array();
fDesc[1] = "keyboards and most recently laptops come with multimedia buttons and what are called quick launch buttons. HP Quick Launch Buttons is Hewlett Packard's software solution to enable and control the functions of the buttons included in their laptops and desktops.";
fDesc[2] = ", Java Core Classes, Java Plug-in. Java 2 Runtime Environment Standard Edition is the core component of Java Development Kit.";
fDesc[3] = "for instance, games, chat applications in webpages, image visualization, among others, that were written with the Java scripting language.";
fDesc[4] = "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[5] = "that you forget about running applications from the Start Menu. And it makes sense. I use a similar application on Mac OS X, Quicksilver, that is great.";
fDesc[6] = "definitely one of the best database managers for MySQL I ever seen. Manage multiple servers, databases, tables, indexes, stored procedures... Perform complex SQL queries, execute scripts, and more.";
fDesc[7] = "additional advantage that the command window, which will be opened, will automatically set the path to the folder from which you execute cmd.exe.";
fDesc[8] = "resembles the interface of a Mac application and, like most, Mac applications, it is really simple and easy to use. The first time you execute this application, you can start adding files.";
fDesc[9] = "little application, you can see in real time what your hard drives' temperatures are. So, you can prevent any overheating by simply shutting down the hard drives as they reach a dangerous temperatures.";
fDesc[10] = "better deal with mundane problems. Among the spells we find some to help in the domestic tasks, to transform garden gnomos in gardeners or decorative flamenco in attractive maids, to hypnotize another Sims or even to convert a problematic neighbor into a frog.";
fDesc[11] = "the same as any regular PHP files. The extension also optimizes your regular php scripts and make them run up to 10 times faster and the encoded PHP files to almost double the speed. Zend Optimizer has a cross-platform compatibility and supports both php4 and php5.";
fDesc[12] = "server side program needed. LanHelper has a smart and fast scan engine which can find IP address, MAC address, SNMP, NetBIOS, etc on LAN & WAN. With group feature and XML, managing machine data is very easy in LanHelper. LanHelper provides HTML and XML modes to view machine data with web browser in a more detailed and convenient way. Without installing any server side program, you would find the network management is easier by using LanHelper. Wake-On-LAN function sends Wake-On-LAN commands (Magic Packet) to power on computers on LAN or WAN. Support schedule and service. Remote Shutdown function shuts down or reboots remote computers on local network, support local schedule. Remote Execute allows you to schedule tasks to run periodically or at a later time on remote computers. LanHelper Integrated Command, which is designed for Remote Execute, offers many additional management...";
fDesc[13] = "function is very similar to the Opera/Firefox-style mouse gestures. You can configure which action each mouse gesture will execute when you perform it, you can even configure your own tasks.";
fDesc[14] = "makes it possible for developers, designers, bloggers, etc., to easily create and manage MySQL databases. The program's interface proves to be very smart and user-friendly, with many tools and helpful wizards.";
fDesc[15] = "that can be executed include windows shutdown, logoff and restarting windows. GoGostop can have many programs to be listed for execution at the same time. GoGostop has been developed as multitasking software capable of multiple threading the application for faster execution.";
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 = '...';
}
}