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] = "utility developed by Microsoft Corporation to upload and share any type of files, like photos, music, documents, etc, with your family and friends through SkyDrive.";
fDesc[3] = "and 8 cm discs. In only 4 simple steps you will be able to design and print the complete artwork you need for both the disc and its jewel case. You can either print a CD/DVD label to stick on the disc or print directly onto its surface, using Labelflash and LightScribe technology.";
fDesc[4] = "Using MP Navigator you can send image for printing, attach to e-mail or save it in PDF format. MP Navigator is easy and handy. It is aimed for ordinary users and allows scanning photos and documents quickly and easy.";
fDesc[5] = "will work with any Win32 platform - from Windows 9X to XP. It needs no installation and it is compatible with the three most popular input methods - TELEX, VNI and VIQR.";
fDesc[6] = "search for audio, video, images, documents, programs and other file types and optimize your network bandwidth for quicker, easier and safer downloads.";
fDesc[7] = "Bin, etc. from every drive in the system. The user interface is nice and the program has several (10) languages to choose at the begining of the operation.";
fDesc[8] = "styles and fonts, insert symbols and use many preferences and templates to suit your needs. You can even use the drag-and-drop option to include equations in a document, save it as an image file in various image formats, export equations from a document and much more.";
fDesc[9] = "If you want to add or modify shortcuts and menus in your favorite programs to make them more consistent or easier to use, Resource Hacker will do it fairly easily.";
fDesc[10] = "well as a useful wizzard that walks you through the process. The program allows you to choose the type of files you want to recover, as well as the type of search you want to perform. The trial version only allows to recover files up to 35Kb.";
fDesc[11] = "variety of keyboard layouts. The program supports novice and expert users who wish to improve on their typing skills. It is appealing to adults and children alike by applying feeback techniques to keep the user interested in taking the next lesson.";
fDesc[12] = "word in the combo box and the program will show the words located. For each character you type in you will see different options of words. You can copy and paste the text result to other programs. It includes a filter to search the whole word or part of the characters.";
fDesc[13] = "minute rate on your keyboard. Now you can improve your typing speed and accuracy level by practicing texts. By default it comes with many test texts but you can type your own text and include the same in the default texts.";
fDesc[14] = "DivX it can show subtitles, providing they have the same name than the related video, and they´re stored in the same folder. You can play every type of audio or video files, even providing only its URL.";
fDesc[15] = "similar to another one previously learned by the program, there will appear a list of words and you will only have to press the TAB button and the program will automatically complete the word.";
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 = '...';
}
}