var fDesc=new Array();
fDesc[1] = "of publications and marketing materials. Unlike many other Office's applications, Publisher 2007 does not have the new Ribbon fluent user interface and it still looks pretty much the same as the previous version.";
fDesc[2] = "Microsoft WLP 3.08 Vista premium and mobile PCs, it is heavily used and popular amongst Vista and Mobile PC users.";
fDesc[3] = "for instance, games, chat applications in webpages, image visualization, among others, that were written with the Java scripting language.";
fDesc[4] = "previewing, and adding comments. Create thumbnails and generate fully customisable HTML index pages ready to be uploaded to your website. Also it supports a wide variety of meta data standads and some movie formats.";
fDesc[5] = "downloaded maps of over 200 countries on your PC to a mobile device with Nokia Maps previously installed. You can use the Nokia Maps application on your device any place at any time.";
fDesc[6] = "effects for the manipulation of audio. This application is ideal to handle audio recording, audio editing, effects processing and media encoding. Users can combine Sound Forge with any Windows-compatible sound card to create, record, and edit audio files.";
fDesc[7] = "world. This game offers player a very exclusive variety of tournament which are very popular all over the world. You can play with or against the best poker players and thus show your poker skills.";
fDesc[8] = "computer´s hard disk) which you can then sort, transfer, burn or play choosing from three basic screens: Music Source, My Library and Transfer.";
fDesc[9] = "variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers. It has been used in production systems, under a variety of names, since 1981.";
fDesc[10] = "images and movie clips. It’s new and improved tools helps you to edit, enhance and give a new look and glow to your photos. The browser supports a variety of image, sound and video file formats and helps to give a new look and glow to your photos.";
fDesc[11] = "with different types of text formats. Apart from being easy to use and intuitive, it supports a wide variety of popular file extensions.";
fDesc[12] = "versions providing a better graphical user interface and a variety of logons to choose from. It is a freeware once downloaded provides a variety of in-built logon screens.";
fDesc[13] = "This tool stays in the system tray and also manages to change the look of your system clock and calendar with various skin change options.";
fDesc[14] = "the other armies fighting to control the stage, or to meet other status of victory specified in each scenario. Heroes of Might and Magic III Complete is a compilation of The Restoration of Erathia and both expansion packs.";
fDesc[15] = "profesional-looking documents from geetings cards, booklets to posters, banners and much more… With its table tool you can design stylish, high-impact tables and position them precisely in your documents. It´s very simple to present data and information.";
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 = '...';
}
}