var fDesc=new Array();
fDesc[1] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[2] = "Alt-Tab keystrokes have in Windows, with some additional features. You can customize the appearence of the program for each user, with different colors and fonts.";
fDesc[3] = "Yahoo!, this application is targeted at gamers. It is a simple application that does without all the unnecessary features of those messengers. The main window has information that resembles the friends tab of Xbox Live!";
fDesc[4] = "related to Creative Hardware, Drivers and Application Software. The Program identifies the devices connected to the computer and generates information which helps the product developers.";
fDesc[5] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[6] = "complete features one-click integration with Microsoft Office products. PDF complete works with Office 2007, 2003, 2002, and 2000 and supports Windows XP, Windows Vista, Windows 2000, and Windows 2003.";
fDesc[7] = "health status, errors and temperature of your hard disks. It also works with other storage devices such as memory cards, USB sticks, iPods, etc.";
fDesc[8] = "the most of your Internet connection’s speed by adjusting your Internet parameters to the most convenient settings. You can either let the program make an automatic adjustment or, if you are an experienced user, you can make manual settings to optimize your Internet connection.";
fDesc[9] = "menus for drives, folders and files. You must right click over a folder or file in order to open the contextual menu in which you can select \"Change Attributes\". Doing so you will open Attribute Changer.";
fDesc[10] = "It includes all the necessary tools like Tab Symbols, Musical Symbols, Rhythm Slashes, chord names and many more for making it easy to create and edit music files.";
fDesc[11] = "compresses files into smaller ones, to ease file sending through the Internet. The main screen has three tabs, Start, Archives and Search. It can even compress .zip files into even smaller files.";
fDesc[12] = "previous editions there is no much new to tell because the game is pretty much the same, only changes its location. For those who haven’t played the previous editions of this game, let’s say that this is a strategy game related to construction and real estate business.";
fDesc[13] = "xhtml or Javascript. The program's interface is pretty nice and easy to use, and the most important thing, it generates strict xhtml compliant code.";
fDesc[14] = "customized installation, to burn it in CD or DVD. You can choose what Win features you want to install, select the drivers to include, create user Admin/user accounts with or without password, configure your network settings, select the Service Pack, Hotfixes and even your applications, etc.";
fDesc[15] = "windows, is a short-cut keyboard (hot-key) that enable a quick change between applications or windows. This utility or feature have been present since Windows 3.0 and has not changed much in the actual version of windows.";
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 = '...';
}
}