var fDesc=new Array();
fDesc[1] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
fDesc[2] = "platform. This driver will dramatically improve the touchpad scroll bar area. It also contains feature enhancements or changes that will help keep your system software current and compatible with other system modules (firmware, BIOS, drivers and software).";
fDesc[3] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[4] = "with management buttons allows creation of a new profile, edit a profile etc. The Settings General page allows Launch of Acer eNet Management, views Wireless Adapter, Firewall settings etc and the Network page has three buttons on this page namely: VPN ,WLAN & LAN";
fDesc[5] = "functioning of your devices. DriverMax goal is to keep you informed of the latest updates for your drivers, by searching them in the Internet.";
fDesc[6] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[7] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[8] = "and developers worldwide. Ubuntu comes with a series of already installed applications that are categorized by functions like: Accessories, Games, Graphics Internet, Office and Sound & Video You can run Ubuntu as a desktop operating system or configure it as a powerful and secure server.";
fDesc[9] = "and options provided by any HTTP server with great performance and absolute control of it. Its administration is very easy however it doesn’t have any GUI; by using commands and scripts you can set it up quickly in almost any platform.";
fDesc[10] = "displayed information you can see the hours of the day, the weather condition in every hour, the temperature in Celsius and Fahrenheit, wind speed (mph) and its direction, etc.";
fDesc[11] = "installing it, the program asks you your location, in order to display the matching weather information. You can select a location in a wide list of locations in Canada or the United States, or in main cities in the rest of the world.";
fDesc[12] = "is a beautiful one with the classic green colors. If you prefer a digital clock, it will display the well-known 7-segment characters. And still more. If you like the digital number format but think that the clock view is not what you want, you can opt for a digital text display.";
fDesc[13] = "formatting, class and methods auto-completion, indexing of user directories and a lot more. This new version features more extensive configuration wizards for beginner users, and enhanced CSS WYSIWYG tools.";
fDesc[14] = "usual XP menu, adding some features. You will see the user´s name on the top of the menu, the day, location, weather conditions (temperature, humidity, winds). On the right you will see the calendar of the current month, with the current day highlighted in white.";
fDesc[15] = "Windows style interface is customizable allowing you to change the skin to any color variation you prefer. The window of the interface displays like a web page with six selective buttons on the left.";
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 = '...';
}
}