var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[3] = "such as audio, video, images, program, documents, and other files, with users all over the world. LimeWire has been recently updated and now it features a smarter colorful interface.";
fDesc[4] = "is dynamic unlike other download managers. Other features include resume broken downloads due to broken network connections, error recover and site grabber for web-sites. Apart from the regular files that can be downloaded, IDM also supports embedded video files";
fDesc[5] = "tools as in Microsoft Office, Writer, Cal, Draw, etc but in a freeware version. It is easy to use and install and you can also open extensions such as .doc, .xl, etc.";
fDesc[6] = "compared to Tcl, Perl, Ruby, Scheme or Java. The language itself is a flexible powerhouse that can handle practically any problem domain.";
fDesc[7] = "can easily be used by any user, even by a beginner. Just write the html code in the \"Design\" window and use tags from the toolbox with editing tag properties, and change the style of the text.";
fDesc[8] = "choose a name and have your IP address redirected to that name. So, if you have an Internet Service Provider that changes your IP every time you reboot your ADSL modem, for example, you will greatly benefit from this application.";
fDesc[9] = "ancient manuscript proclaims: “Align the relics you can see, across or down in groups of three. Turn all squares to solid gold, the path to riches will soon unfold”, and that’s pretty much what you have to do in the game.";
fDesc[10] = "introduced with a number of improvements, which includes a list of new features, bug fixes, a number of new parameters, functions, methods, extensions, classes, INI configuration Directives and also security enhancements.";
fDesc[11] = "effects to them, thus beating the limitations of electronic devices. This is achieved by fusing multiple exposures of the picture into one, resulting in a beautiful picture.";
fDesc[12] = "twenty of the best known file formats and it allows you to add many more using different plugins and freely-available codecs. Play the music you like wherever it is - on your computer, in FTP folders or on the web. Create dynamic playlists and burn them to CD with the Ashampoo BurnIt! Add-On.";
fDesc[13] = "copies and take with you all your MSN extras to use them when you connect to Internet from other PCs. The version 1.3.3 runs with Microsoft MSN Messenger 7, 7.5 and Live Messenger 8.0, 8.1 and 8.5";
fDesc[14] = "HTML you can create a wonderful website. You can import pre-made HTML pages, edit or rotate images, apply 55+ effects, create shape and manage transparency. You can create stylesheets, menus, rollover or roll-on click effects, play or stop music, launch Java functions.";
fDesc[15] = "panel. By clicking on the elements of that tree, you can choose the images you want to see. They will be displayed in the upper right panel. In some cases, you will see some related slides in the lower left panel. The lower right panel will show you some data about the picture you´re watching.";
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 = '...';
}
}